home: vim: load 'onedark-vim' manually
This commit is contained in:
parent
e5f4416a85
commit
513c1555f1
|
@ -10,7 +10,10 @@
|
|||
plugins = with pkgs.vimPlugins; [
|
||||
# Theming
|
||||
lightline-vim # Fancy status bar
|
||||
onedark-vim # Nice dark theme
|
||||
{
|
||||
plugin = onedark-vim; # Nice dark theme
|
||||
optional = true; # Needs to be `packadd`-ed manually...
|
||||
}
|
||||
|
||||
# tpope essentials
|
||||
vim-commentary # Easy comments
|
||||
|
|
|
@ -68,6 +68,8 @@ set timeoutlen=500
|
|||
" Set dark mode by default
|
||||
set background=dark
|
||||
|
||||
" Load it manually because of autoload functions...
|
||||
packadd! onedark-vim
|
||||
" Use onedark
|
||||
colorscheme onedark
|
||||
|
||||
|
|
Loading…
Reference in a new issue