|
|
|
@ -13,7 +13,10 @@ endif
|
|
|
|
|
call plug#begin('~/.config/nvim/plugged') |
|
|
|
|
|
|
|
|
|
" Material theme |
|
|
|
|
Plug 'hzchirs/vim-material' |
|
|
|
|
" Plug 'hzchirs/vim-material' |
|
|
|
|
|
|
|
|
|
" Nord Theme |
|
|
|
|
Plug 'arcticicestudio/nord-vim' |
|
|
|
|
|
|
|
|
|
" Syntastic |
|
|
|
|
Plug 'scrooloose/syntastic' |
|
|
|
@ -36,7 +39,7 @@ Plug 'mileszs/ack.vim'
|
|
|
|
|
" Improved vim status bar |
|
|
|
|
Plug 'bling/vim-airline' |
|
|
|
|
Plug 'vim-airline/vim-airline-themes' |
|
|
|
|
let g:airline_theme='material' |
|
|
|
|
let g:airline_theme='nord' |
|
|
|
|
|
|
|
|
|
" Indent guides |
|
|
|
|
Plug 'Yggdroot/indentLine' |
|
|
|
@ -278,4 +281,13 @@ map <silent> <Leader>i :IndentLinesToggle<CR>
|
|
|
|
|
" Color scheme setting is done absolutely last to make sure everything is |
|
|
|
|
" available to vim |
|
|
|
|
set background=dark |
|
|
|
|
colorscheme vim-material |
|
|
|
|
colorscheme nord |
|
|
|
|
|
|
|
|
|
let g:ycm_language_server = |
|
|
|
|
\ [ |
|
|
|
|
\ { |
|
|
|
|
\ 'name': 'ocaml', |
|
|
|
|
\ 'cmdline': ['ocamllsp'], |
|
|
|
|
\ 'filetypes': ['ocaml'] |
|
|
|
|
\ } |
|
|
|
|
\] |
|
|
|
|