This commit is contained in:
doyle 2022-06-17 18:03:39 +10:00
parent 333524778e
commit dbc8ebe9c1

View File

@ -6,8 +6,16 @@ call plug#begin(stdpath('config') . '/plugged')
Plug 'https://github.com/junegunn/fzf.vim' Plug 'https://github.com/junegunn/fzf.vim'
Plug 'https://github.com/Tetralux/odin.vim' Plug 'https://github.com/Tetralux/odin.vim'
Plug 'https://github.com/morhetz/gruvbox' Plug 'https://github.com/morhetz/gruvbox'
Plug 'https://github.com/neovim/nvim-lspconfig'
call plug#end() call plug#end()
" Setup LSP
" ==============================================================================
lua <<EOF
require('lspconfig').clangd.setup {
}
EOF
" Theme " Theme
" ============================================================================== " ==============================================================================
let g:gruvbox_contrast_dark='hard' let g:gruvbox_contrast_dark='hard'