Browse Source

added nord

master
Juni Kim 2 years ago
parent
commit
6a08721204
  1. 9
      lsp.vimrc

9
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 = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
call Gruvbox()
call Catppuccin()
else
call Seoul256()
endif

Loading…
Cancel
Save