summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --