This commit is contained in:
iFargle 2023-08-29 19:09:29 +09:00
parent 22324b5ab7
commit c7366460f3
2 changed files with 22 additions and 23 deletions

View file

@ -23,10 +23,10 @@
disable_ligatures never disable_ligatures never
shell_integration enabled shell_integration enabled
font_family JetBrains Mono Medium font_family JetBrainsMono Nerd Medium
bold_font JetBrains Mono Bold bold_font JetBrainsMono Nerd Bold
italic_font JetBrains Mono Italic italic_font JetBrainsMono Nerd Italic
bold_italic_font JetBrains Mono Bold Italic bold_italic_font JetBrainsMono Nerd Bold Italic
include ./theme.conf include ./theme.conf
''; '';

View file

@ -8,7 +8,6 @@
plugins = with pkgs.vimPlugins; [ plugins = with pkgs.vimPlugins; [
nvchad nvchad
nvchad-ui nvchad-ui
gruvbox
]; ];
# plugins = with pkgs.vimPlugins; [ # plugins = with pkgs.vimPlugins; [
# # vim-airline # Trying out lualine - below # # vim-airline # Trying out lualine - below
@ -64,22 +63,22 @@
# vim-lastplace # # vim-lastplace #
# vim-visual-multi # # vim-visual-multi #
# ]; # ];
extraConfig = '' # extraConfig = ''
set mouse=a # set mouse=a
set number # set number
syntax on # syntax on
set hlsearch # set hlsearch
set ignorecase # set ignorecase
set smartcase # set smartcase
set autoindent # set autoindent
set ruler # set ruler
set shiftwidth=2 # set shiftwidth=2
set expandtab # set expandtab
set softtabstop=2 # set softtabstop=2
set cursorline # set cursorline
let g:rainbow_active = 1 # let g:rainbow_active = 1
#
colorscheme gruvbox # colorscheme gruvbox
''; # '';
}; # };
} }