kitty: fonts, colors, cursor; tmux: some reduction; vim: fix fzf; zshrc: new alias
This commit is contained in:
parent
8df0034baf
commit
ad8bb1bf6c
4 changed files with 28 additions and 32 deletions
55
kitty.conf
55
kitty.conf
|
@ -1,14 +1,10 @@
|
||||||
# I am config
|
# I am config
|
||||||
#font_family Cascadia Code PL
|
font_family Cascadia Code PL
|
||||||
#font_size 14
|
|
||||||
#font_features CascadiaCodePL-Italic +ss01
|
|
||||||
font_family Fantasque Sans Mono
|
|
||||||
font_size 16
|
font_size 16
|
||||||
|
adjust_line_height 0
|
||||||
|
adjust_column_width -1
|
||||||
box_drawing_scale 0.1, 0.5, 1, 1.5
|
box_drawing_scale 0.1, 0.5, 1, 1.5
|
||||||
disable_ligatures cursor
|
disable_ligatures cursor
|
||||||
|
|
||||||
cursor_shape underline
|
|
||||||
cursor_underline_thickness 3.0
|
|
||||||
cursor_blink_interval 0
|
cursor_blink_interval 0
|
||||||
|
|
||||||
enable_audio_bell no
|
enable_audio_bell no
|
||||||
|
@ -29,27 +25,28 @@ map ctrl+alt+v paste_from_clipboard
|
||||||
mouse_map left click ungrabbed mouse_click_url_or_select
|
mouse_map left click ungrabbed mouse_click_url_or_select
|
||||||
mouse_map alt+left press ungrabbed mouse_selection rectangle
|
mouse_map alt+left press ungrabbed mouse_selection rectangle
|
||||||
|
|
||||||
# Pencil theme
|
# Gruvbox Dark
|
||||||
background #eeeeee
|
selection_foreground #282828
|
||||||
foreground #444444
|
selection_background #83a598
|
||||||
selection_background #005f87
|
foreground #ebdbb2
|
||||||
selection_foreground #eeeeee
|
background #282828
|
||||||
cursor #005F87
|
cursor #fb4934
|
||||||
|
cursor_text_color #282828
|
||||||
|
|
||||||
color0 #1c1c1c
|
color0 #282828
|
||||||
color1 #d70000
|
color1 #cc241d
|
||||||
color2 #008700
|
color2 #98971a
|
||||||
color3 #ffaf00
|
color3 #d79921
|
||||||
color4 #005f87
|
color4 #458588
|
||||||
color5 #8700af
|
color5 #b16286
|
||||||
color6 #00afaf
|
color6 #689d6a
|
||||||
color7 #d0d0d0
|
color7 #a89984
|
||||||
|
|
||||||
color8 #444444
|
color8 #928374
|
||||||
color9 #d75f00
|
color9 #fb4934
|
||||||
color10 #5faf5f
|
color10 #b8bb26
|
||||||
color11 #d7af5f
|
color11 #fabd2f
|
||||||
color12 #5fafd7
|
color12 #83a598
|
||||||
color13 #af87d7
|
color13 #d3869b
|
||||||
color14 #5f8787
|
color14 #8ec07c
|
||||||
color15 #eeeeee
|
color15 #ebdbb2
|
||||||
|
|
|
@ -6,12 +6,9 @@ bind h select-pane -L
|
||||||
bind j select-pane -D
|
bind j select-pane -D
|
||||||
bind k select-pane -U
|
bind k select-pane -U
|
||||||
bind l select-pane -R
|
bind l select-pane -R
|
||||||
bind p command-prompt -p "ssh:" "new-window 's %%'"
|
|
||||||
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
|
bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
|
||||||
bind y command-prompt break-pane
|
bind y command-prompt break-pane
|
||||||
bind N new-session
|
bind N new-session
|
||||||
bind -n M-w next-window
|
|
||||||
bind -n M-q previous-window
|
|
||||||
set -g prefix C-g
|
set -g prefix C-g
|
||||||
set -g mode-keys "vi"
|
set -g mode-keys "vi"
|
||||||
set -g escape-time "0"
|
set -g escape-time "0"
|
||||||
|
|
|
@ -45,6 +45,7 @@ Plug 'junegunn/vim-plug'
|
||||||
" general plugins
|
" general plugins
|
||||||
"Plug 'sheerun/vim-polyglot'
|
"Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
|
Plug 'junegunn/fzf'
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
Plug 'junegunn/vim-easy-align'
|
Plug 'junegunn/vim-easy-align'
|
||||||
Plug 'mhinz/vim-signify'
|
Plug 'mhinz/vim-signify'
|
||||||
|
|
1
zshrc
1
zshrc
|
@ -155,6 +155,7 @@ fixterm() { printf $'c' }
|
||||||
diff() { command diff --color $@ }
|
diff() { command diff --color $@ }
|
||||||
tailf() { command less +F $@ }
|
tailf() { command less +F $@ }
|
||||||
rgrep() { command grep --exclude-dir=\.git -R $@ }
|
rgrep() { command grep --exclude-dir=\.git -R $@ }
|
||||||
|
fwcmd() { command firewall-cmd $@ }
|
||||||
|
|
||||||
# ls
|
# ls
|
||||||
if [[ -x $(whence -p exa) ]]; then
|
if [[ -x $(whence -p exa) ]]; then
|
||||||
|
|
Loading…
Reference in a new issue