Add vim on ubuntu
This commit is contained in:
parent
fa3d100371
commit
e9d189d9b8
1 changed files with 41 additions and 0 deletions
|
@ -14,6 +14,47 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
(
|
||||||
|
neovim.override {
|
||||||
|
vimAlias = true;
|
||||||
|
configure = {
|
||||||
|
customRC = ''
|
||||||
|
if filereadable($HOME . "/.vimrc")
|
||||||
|
source $HOME/.vimrc
|
||||||
|
endif
|
||||||
|
'';
|
||||||
|
|
||||||
|
vam.knownPlugins = unstable.vimPlugins;
|
||||||
|
vam.pluginDictionaries = [
|
||||||
|
{ names = [
|
||||||
|
"ack-vim"
|
||||||
|
"ctrlp-vim"
|
||||||
|
"editorconfig-vim"
|
||||||
|
"fzf-vim"
|
||||||
|
"nerdtree"
|
||||||
|
"nerdtree-git-plugin"
|
||||||
|
"rust-vim"
|
||||||
|
"tabular"
|
||||||
|
"vim-airline"
|
||||||
|
"vim-airline-themes"
|
||||||
|
"vim-autoformat"
|
||||||
|
"vim-colors-solarized"
|
||||||
|
"vim-dirdiff"
|
||||||
|
"vim-dispatch"
|
||||||
|
"vim-fugitive"
|
||||||
|
"vim-gitgutter"
|
||||||
|
"vim-markdown"
|
||||||
|
"vim-nix"
|
||||||
|
"vim-sensible"
|
||||||
|
"vim-startify"
|
||||||
|
"vim-surround"
|
||||||
|
"vim-toml"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
};})
|
||||||
|
|
||||||
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
||||||
passff-host
|
passff-host
|
||||||
cabal-install stack hsetroot lm_sensors gnome3.gnome-screenshot
|
cabal-install stack hsetroot lm_sensors gnome3.gnome-screenshot
|
||||||
|
|
Loading…
Reference in a new issue