From a1f77fb47c5b40962f06dabd85f8a312fb8277ad Mon Sep 17 00:00:00 2001 From: Alexander NeonXP Kiryukhin Date: Wed, 17 Jul 2024 02:21:13 +0300 Subject: [PATCH] update kitty --- kitty/kitty.conf | 20 ++++++++++---------- kitty/monokai.conf | 6 ++---- zsh/zshrc | 9 +++++++++ 3 files changed, 21 insertions(+), 14 deletions(-) diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 7da2e0a..c8afd90 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -79,18 +79,18 @@ bell_on_tab "🔔 " # command_on_bell none # bell_path none # linux_bell_theme __custom -# remember_window_size yes -# initial_window_width 640 -# initial_window_height 400 +remember_window_size no +initial_window_width 800 +initial_window_height 600 # enabled_layouts * # window_resize_step_cells 2 # window_resize_step_lines 2 -window_border_width 0.1pt +window_border_width 0 # draw_minimal_borders yes -# window_margin_width 0 -# single_window_margin_width -1 -# window_padding_width 0 -# single_window_padding_width -1 +window_margin_width 0 +single_window_margin_width -1 +window_padding_width 0 +single_window_padding_width -1 # placement_strategy center # active_border_color #00ff00 # inactive_border_color #cccccc @@ -170,7 +170,7 @@ include monokai.conf # editor . # close_on_child_death no # remote_control_password -# allow_remote_control no +allow_remote_control yes # listen_on none # env # watcher @@ -188,7 +188,7 @@ include monokai.conf # term xterm-kitty # forward_stdio no # menu_map -# wayland_titlebar_color system +wayland_titlebar_color system # macos_titlebar_color system # macos_option_as_alt no # macos_hide_from_tasks no diff --git a/kitty/monokai.conf b/kitty/monokai.conf index 5e39e8f..beaf67d 100644 --- a/kitty/monokai.conf +++ b/kitty/monokai.conf @@ -2,7 +2,8 @@ # Based on https://www.monokai.pro/ foreground #f7f1ff -background #222222 +# background #222222 +background #000000 selection_foreground #131313 selection_background #fce566 url_color #5ad4e6 @@ -21,9 +22,6 @@ tab_bar_margin_width 1.0 dim_opacity 0.5 inactive_text_alpha 0.5 active_border_color #19181a -draw_minimal_borders yes -window_padding_width 0 -window_margin_width 0 macos_titlebar_color background # black diff --git a/zsh/zshrc b/zsh/zshrc index ca404e2..28124d8 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -25,6 +25,9 @@ antigen apply # Exports export PATH=$HOME/.local/bin:/usr/local/bin:$HOME/go/bin:$PATH +# export GOROOT=$HOME/work/go +export GOPATH=$HOME/go +export GOPROXY=https://proxy.neonxp.ru export EDITOR="micro" #export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock @@ -37,6 +40,12 @@ alias gitpush='git add . && git commit --amend --no-edit && git push -f' alias k='kubectl' alias yu="ssh-add -e /usr/lib/x86_64-linux-gnu/libykcs11.so; ssh-add -s /usr/lib/x86_64-linux-gnu/libykcs11.so" alias m='micro' +alias cp="cp -i" # confirm before overwriting something +alias df='df -h' # human-readable sizes +alias free='free -m' # show sizes in MB +alias np='nano -w PKGBUILD' +alias more=less + [[ ! -f `which exa` ]] || alias ls="exa" && alias ll="exa -l"