summaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-09-11 11:16:03 +0100
committerself <george@gabbott.dev>2022-09-11 11:16:03 +0100
commit028426e861134f26a5b799dd19bf18cc45e6e9ab (patch)
treef328ccdd387735b9b45425738da94741ad07d450 /init.vim
parent78412a618e09a442676b2bcc4f38d87b2d88ebc6 (diff)
fix
Diffstat (limited to 'init.vim')
-rwxr-xr-xinit.vim11
1 files changed, 9 insertions, 2 deletions
diff --git a/init.vim b/init.vim
index 4ddf392..e9708be 100755
--- a/init.vim
+++ b/init.vim
@@ -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 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --