kitty: fonts, config alignment; nvim: get rid of unnecessary plugins
This commit is contained in:
parent
e4c3ca167e
commit
87c7aa23fe
2 changed files with 46 additions and 52 deletions
|
@ -15,8 +15,6 @@ require('lazy').setup {
|
||||||
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
{'nvim-telescope/telescope.nvim', dependencies = {'nvim-lua/plenary.nvim'}},
|
||||||
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
|
{'nvim-treesitter/nvim-treesitter', cmd = 'TSUpdate'},
|
||||||
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'sh', 'zsh', 'lua', 'python'}},
|
{'w0rp/ale', cmd = 'ALEEnable', ft = {'bash', 'sh', 'zsh', 'lua', 'python'}},
|
||||||
'hashivim/vim-terraform',
|
|
||||||
'khaveesh/vim-fish-syntax',
|
|
||||||
'lewis6991/gitsigns.nvim',
|
'lewis6991/gitsigns.nvim',
|
||||||
'lifepillar/vim-cheat40',
|
'lifepillar/vim-cheat40',
|
||||||
'tpope/vim-rsi',
|
'tpope/vim-rsi',
|
||||||
|
|
|
@ -1,37 +1,35 @@
|
||||||
# Use Ctrl+Alt+F5 to reload
|
# Use Ctrl+Alt+F5 to reload
|
||||||
font_family VascadiaMod
|
font_family FantasqueSansM Nerd Font
|
||||||
modify_font underline_position 1
|
modify_font underline_position 1
|
||||||
font_size 14
|
font_size 15
|
||||||
box_drawing_scale 0.1, 0.5, 1, 1.5
|
cursor_blink_interval 0
|
||||||
cursor_blink_interval 0
|
term xterm-256color
|
||||||
|
|
||||||
# background_blur 20
|
active_border_color #cb4b16
|
||||||
# background_opacity 0.95
|
inactive_border_color #93a1a1
|
||||||
|
|
||||||
active_border_color #cb4b16
|
|
||||||
inactive_border_color #93a1a1
|
|
||||||
tab_title_template " ┇{index}┇{title} "
|
tab_title_template " ┇{index}┇{title} "
|
||||||
tab_bar_style separator
|
tab_bar_style separator
|
||||||
tab_separator ""
|
tab_separator ""
|
||||||
tab_bar_edge top
|
tab_bar_edge top
|
||||||
active_tab_background #93a1a1
|
active_tab_background #93a1a1
|
||||||
active_tab_foreground #fdf6e3
|
active_tab_foreground #fdf6e3
|
||||||
active_tab_font_style italic
|
active_tab_font_style italic
|
||||||
inactive_tab_background #eee8d5
|
inactive_tab_background #eee8d5
|
||||||
inactive_tab_foreground #657b83
|
inactive_tab_foreground #657b83
|
||||||
inactive_tab_font_style italic
|
inactive_tab_font_style italic
|
||||||
|
|
||||||
enabled_layouts splits,stack
|
enabled_layouts splits,stack
|
||||||
enable_audio_bell no
|
enable_audio_bell no
|
||||||
strip_trailing_spaces always
|
strip_trailing_spaces always
|
||||||
open_url_with default
|
open_url_with default
|
||||||
window_padding_width 2
|
window_padding_width 2
|
||||||
placement_strategy top-left
|
placement_strategy top-left
|
||||||
remember_window_size no
|
remember_window_size no
|
||||||
initial_window_width 120c
|
initial_window_width 120c
|
||||||
initial_window_height 30c
|
initial_window_height 30c
|
||||||
resize_in_steps no
|
resize_in_steps no
|
||||||
shell_integration no-cursor
|
shell_integration no-cursor
|
||||||
|
editor nvim
|
||||||
|
|
||||||
map ctrl+g>c new_tab
|
map ctrl+g>c new_tab
|
||||||
map ctrl+g>n next_tab
|
map ctrl+g>n next_tab
|
||||||
|
@ -65,30 +63,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
|
||||||
|
|
||||||
# Gruvbox Dark
|
# Solarized light
|
||||||
selection_foreground #586e75
|
selection_foreground #586e75
|
||||||
selection_background #eee8d5
|
selection_background #eee8d5
|
||||||
foreground #657b83
|
foreground #657b83
|
||||||
background #fdf6e3
|
background #fdf6e3
|
||||||
cursor #cb4b16
|
cursor #cb4b16
|
||||||
cursor_text_color #fdf6e3
|
cursor_text_color #fdf6e3
|
||||||
|
|
||||||
color0 #073642
|
color0 #073642
|
||||||
color1 #dc322f
|
color1 #dc322f
|
||||||
color2 #859900
|
color2 #859900
|
||||||
color3 #b58900
|
color3 #b58900
|
||||||
color4 #268bd2
|
color4 #268bd2
|
||||||
color5 #d33682
|
color5 #d33682
|
||||||
color6 #2aa198
|
color6 #2aa198
|
||||||
color7 #eee8d5
|
color7 #eee8d5
|
||||||
|
|
||||||
color8 #002b36
|
color8 #002b36
|
||||||
color9 #cb4b16
|
color9 #cb4b16
|
||||||
color10 #586e75
|
color10 #586e75
|
||||||
color11 #657b83
|
color11 #657b83
|
||||||
color12 #839496
|
color12 #839496
|
||||||
color13 #6c71c4
|
color13 #6c71c4
|
||||||
color14 #93a1a1
|
color14 #93a1a1
|
||||||
color15 #fdf6e3
|
color15 #fdf6e3
|
||||||
|
|
||||||
editor nvim
|
|
||||||
|
|
Loading…
Reference in a new issue