Add 'users/glittershark/system/' from commit '3b174300ae'
git-subtree-dir: users/glittershark/system git-subtree-mainline:85d82a9dc2git-subtree-split:3b174300ae
This commit is contained in:
commit
81564185e9
49 changed files with 3802 additions and 0 deletions
47
users/glittershark/system/home/modules/vim.nix
Normal file
47
users/glittershark/system/home/modules/vim.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
ctrlp
|
||||
deoplete-nvim
|
||||
syntastic
|
||||
vim-abolish
|
||||
vim-airline
|
||||
vim-airline-themes
|
||||
vim-bufferline
|
||||
vim-closetag
|
||||
# vim-colors-solarized
|
||||
# solarized
|
||||
(pkgs.vimUtils.buildVimPlugin {
|
||||
name = "vim-colors-solarized";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "glittershark";
|
||||
repo = "vim-colors-solarized";
|
||||
rev = "4857c3221ec3f2693a45855154cb61a2cefb514d";
|
||||
sha256 = "0kqp5w14g7adaiinmixm7z3x4w74lv1lcgbqjbirx760f0wivf9y";
|
||||
};
|
||||
})
|
||||
vim-commentary
|
||||
vim-dispatch
|
||||
vim-endwise
|
||||
vim-repeat
|
||||
vim-fugitive
|
||||
vim-markdown
|
||||
vim-nix
|
||||
vim-rhubarb
|
||||
vim-sexp
|
||||
vim-sexp-mappings-for-regular-people
|
||||
vim-sleuth
|
||||
vim-startify
|
||||
vim-surround
|
||||
vim-unimpaired
|
||||
vinegar
|
||||
];
|
||||
extraConfig = ''
|
||||
source ${./vimrc}
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue