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
|
||||
#font_family Cascadia Code PL
|
||||
#font_size 14
|
||||
#font_features CascadiaCodePL-Italic +ss01
|
||||
font_family Fantasque Sans Mono
|
||||
font_family Cascadia Code PL
|
||||
font_size 16
|
||||
adjust_line_height 0
|
||||
adjust_column_width -1
|
||||
box_drawing_scale 0.1, 0.5, 1, 1.5
|
||||
disable_ligatures cursor
|
||||
|
||||
cursor_shape underline
|
||||
cursor_underline_thickness 3.0
|
||||
cursor_blink_interval 0
|
||||
|
||||
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 alt+left press ungrabbed mouse_selection rectangle
|
||||
|
||||
# Pencil theme
|
||||
background #eeeeee
|
||||
foreground #444444
|
||||
selection_background #005f87
|
||||
selection_foreground #eeeeee
|
||||
cursor #005F87
|
||||
# Gruvbox Dark
|
||||
selection_foreground #282828
|
||||
selection_background #83a598
|
||||
foreground #ebdbb2
|
||||
background #282828
|
||||
cursor #fb4934
|
||||
cursor_text_color #282828
|
||||
|
||||
color0 #1c1c1c
|
||||
color1 #d70000
|
||||
color2 #008700
|
||||
color3 #ffaf00
|
||||
color4 #005f87
|
||||
color5 #8700af
|
||||
color6 #00afaf
|
||||
color7 #d0d0d0
|
||||
color0 #282828
|
||||
color1 #cc241d
|
||||
color2 #98971a
|
||||
color3 #d79921
|
||||
color4 #458588
|
||||
color5 #b16286
|
||||
color6 #689d6a
|
||||
color7 #a89984
|
||||
|
||||
color8 #444444
|
||||
color9 #d75f00
|
||||
color10 #5faf5f
|
||||
color11 #d7af5f
|
||||
color12 #5fafd7
|
||||
color13 #af87d7
|
||||
color14 #5f8787
|
||||
color15 #eeeeee
|
||||
color8 #928374
|
||||
color9 #fb4934
|
||||
color10 #b8bb26
|
||||
color11 #fabd2f
|
||||
color12 #83a598
|
||||
color13 #d3869b
|
||||
color14 #8ec07c
|
||||
color15 #ebdbb2
|
||||
|
|
|
@ -6,12 +6,9 @@ bind h select-pane -L
|
|||
bind j select-pane -D
|
||||
bind k select-pane -U
|
||||
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 y command-prompt break-pane
|
||||
bind N new-session
|
||||
bind -n M-w next-window
|
||||
bind -n M-q previous-window
|
||||
set -g prefix C-g
|
||||
set -g mode-keys "vi"
|
||||
set -g escape-time "0"
|
||||
|
|
|
@ -45,6 +45,7 @@ Plug 'junegunn/vim-plug'
|
|||
" general plugins
|
||||
"Plug 'sheerun/vim-polyglot'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'junegunn/fzf'
|
||||
Plug 'junegunn/fzf.vim'
|
||||
Plug 'junegunn/vim-easy-align'
|
||||
Plug 'mhinz/vim-signify'
|
||||
|
|
1
zshrc
1
zshrc
|
@ -155,6 +155,7 @@ fixterm() { printf $'c' }
|
|||
diff() { command diff --color $@ }
|
||||
tailf() { command less +F $@ }
|
||||
rgrep() { command grep --exclude-dir=\.git -R $@ }
|
||||
fwcmd() { command firewall-cmd $@ }
|
||||
|
||||
# ls
|
||||
if [[ -x $(whence -p exa) ]]; then
|
||||
|
|
Loading…
Reference in a new issue