update kitty
This commit is contained in:
parent
9503b74feb
commit
a1f77fb47c
3 changed files with 21 additions and 14 deletions
|
@ -79,18 +79,18 @@ bell_on_tab "🔔 "
|
||||||
# command_on_bell none
|
# command_on_bell none
|
||||||
# bell_path none
|
# bell_path none
|
||||||
# linux_bell_theme __custom
|
# linux_bell_theme __custom
|
||||||
# remember_window_size yes
|
remember_window_size no
|
||||||
# initial_window_width 640
|
initial_window_width 800
|
||||||
# initial_window_height 400
|
initial_window_height 600
|
||||||
# enabled_layouts *
|
# enabled_layouts *
|
||||||
# window_resize_step_cells 2
|
# window_resize_step_cells 2
|
||||||
# window_resize_step_lines 2
|
# window_resize_step_lines 2
|
||||||
window_border_width 0.1pt
|
window_border_width 0
|
||||||
# draw_minimal_borders yes
|
# draw_minimal_borders yes
|
||||||
# window_margin_width 0
|
window_margin_width 0
|
||||||
# single_window_margin_width -1
|
single_window_margin_width -1
|
||||||
# window_padding_width 0
|
window_padding_width 0
|
||||||
# single_window_padding_width -1
|
single_window_padding_width -1
|
||||||
# placement_strategy center
|
# placement_strategy center
|
||||||
# active_border_color #00ff00
|
# active_border_color #00ff00
|
||||||
# inactive_border_color #cccccc
|
# inactive_border_color #cccccc
|
||||||
|
@ -170,7 +170,7 @@ include monokai.conf
|
||||||
# editor .
|
# editor .
|
||||||
# close_on_child_death no
|
# close_on_child_death no
|
||||||
# remote_control_password
|
# remote_control_password
|
||||||
# allow_remote_control no
|
allow_remote_control yes
|
||||||
# listen_on none
|
# listen_on none
|
||||||
# env
|
# env
|
||||||
# watcher
|
# watcher
|
||||||
|
@ -188,7 +188,7 @@ include monokai.conf
|
||||||
# term xterm-kitty
|
# term xterm-kitty
|
||||||
# forward_stdio no
|
# forward_stdio no
|
||||||
# menu_map
|
# menu_map
|
||||||
# wayland_titlebar_color system
|
wayland_titlebar_color system
|
||||||
# macos_titlebar_color system
|
# macos_titlebar_color system
|
||||||
# macos_option_as_alt no
|
# macos_option_as_alt no
|
||||||
# macos_hide_from_tasks no
|
# macos_hide_from_tasks no
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
# Based on https://www.monokai.pro/
|
# Based on https://www.monokai.pro/
|
||||||
|
|
||||||
foreground #f7f1ff
|
foreground #f7f1ff
|
||||||
background #222222
|
# background #222222
|
||||||
|
background #000000
|
||||||
selection_foreground #131313
|
selection_foreground #131313
|
||||||
selection_background #fce566
|
selection_background #fce566
|
||||||
url_color #5ad4e6
|
url_color #5ad4e6
|
||||||
|
@ -21,9 +22,6 @@ tab_bar_margin_width 1.0
|
||||||
dim_opacity 0.5
|
dim_opacity 0.5
|
||||||
inactive_text_alpha 0.5
|
inactive_text_alpha 0.5
|
||||||
active_border_color #19181a
|
active_border_color #19181a
|
||||||
draw_minimal_borders yes
|
|
||||||
window_padding_width 0
|
|
||||||
window_margin_width 0
|
|
||||||
macos_titlebar_color background
|
macos_titlebar_color background
|
||||||
|
|
||||||
# black
|
# black
|
||||||
|
|
|
@ -25,6 +25,9 @@ antigen apply
|
||||||
# Exports
|
# Exports
|
||||||
|
|
||||||
export PATH=$HOME/.local/bin:/usr/local/bin:$HOME/go/bin:$PATH
|
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 EDITOR="micro"
|
||||||
#export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
#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 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 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 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"
|
[[ ! -f `which exa` ]] || alias ls="exa" && alias ll="exa -l"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue