diff options
author | self <george@gabbott.dev> | 2022-09-11 11:16:03 +0100 |
---|---|---|
committer | self <george@gabbott.dev> | 2022-09-11 11:16:03 +0100 |
commit | 028426e861134f26a5b799dd19bf18cc45e6e9ab (patch) | |
tree | f328ccdd387735b9b45425738da94741ad07d450 /init.vim | |
parent | 78412a618e09a442676b2bcc4f38d87b2d88ebc6 (diff) |
fix
Diffstat (limited to 'init.vim')
-rwxr-xr-x | init.vim | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -22,6 +22,12 @@ set ttyfast " Speed up scrolling in Vim set cursorline set termguicolors " Themes don't seem to work without this. " set backupdir=~/.cache/vim " Directory to store backup files. + +" Some aliases to make my life easier +command W w +command Wq wq + + " vim-plug -> call plug#begin('~/.config/nvim/plugged') @@ -189,10 +195,10 @@ call plug#end() " Set Theme if strftime("%H") >= 6 && strftime("%H") < 18 set background=light - colorscheme tempus_totus + colorscheme kat.nwim else set background=dark - colorscheme tempus_night + colorscheme kat.nwim endif " numb @@ -247,6 +253,7 @@ require'lspconfig'.hls.setup{} -- Others -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- require'lspconfig'.ltex.setup{} +require'lspconfig'.ols.setup{} -- Others -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- BEGIN -- Go -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- |