diff --git a/lsp.vimrc b/lsp.vimrc index 1efd027..e6b994e 100644 --- a/lsp.vimrc +++ b/lsp.vimrc @@ -54,6 +54,7 @@ call plug#begin() Plug 'catppuccin/vim' Plug 'lifepillar/vim-solarized8' Plug 'morhetz/gruvbox' +Plug 'arcticicestudio/nord-vim' Plug 'junegunn/seoul256.vim' Plug 'junegunn/fzf' @@ -204,6 +205,12 @@ function! Gruvbox() let g:airline_theme = "gruvbox" endfu +function! Nord() + set background=dark + colorscheme nord + let g:airline_theme = "nord" +endfu + function! Seoul256() let g:seoul256_background = 234 let g:airline_theme = "seoul256" @@ -215,7 +222,7 @@ if has('termguicolors') set termguicolors let &t_8f = "\[38;2;%lu;%lu;%lum" let &t_8b = "\[48;2;%lu;%lu;%lum" - call Gruvbox() + call Catppuccin() else call Seoul256() endif