Browse Source

polyglot

master
Juni Kim 1 year ago
parent
commit
a857e121f2
  1. 11
      lsp.vimrc

11
lsp.vimrc

@ -51,11 +51,12 @@ endif
call plug#begin()
Plug 'sheerun/vim-polyglot'
Plug 'ap/vim-css-color'
Plug 'vim-python/python-syntax'
Plug 'bagrat/vim-buffet'
Plug 'catppuccin/vim'
Plug 'phanviet/vim-monokai-pro'
Plug 'lifepillar/vim-solarized8'
Plug 'morhetz/gruvbox'
Plug 'arcticicestudio/nord-vim'
@ -182,7 +183,7 @@ if s:tmux != ''
nnoremap <C-f> <cmd>!tmuxs<CR>
endif
" disable ex mode
" disable accidental ex mode
nnoremap Q <nop>
" Plugin options must go at the bottom of the file.
@ -220,6 +221,12 @@ function! Gruvbox()
let g:airline_theme = "gruvbox"
endfu
function! MonokaiPro()
set background=dark
colorscheme monokai_pro
let g:airline_theme = "base16_monokai"
endfu
function! Nord()
set background=dark
colorscheme nord

Loading…
Cancel
Save