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