home: add vim
This actually uses neovim... I'm done with trying to be compatible with both I haven't actually migrated my configuration to it yet, this is not even the bare minimum. We'll get there :-)
This commit is contained in:
parent
f589b8d5d3
commit
5d508771ce
|
@ -13,6 +13,7 @@
|
||||||
./secrets # Home-manager specific secrets
|
./secrets # Home-manager specific secrets
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
./tmux.nix
|
./tmux.nix
|
||||||
|
./vim
|
||||||
./xdg.nix
|
./xdg.nix
|
||||||
./zsh
|
./zsh
|
||||||
];
|
];
|
||||||
|
|
14
home/vim/default.nix
Normal file
14
home/vim/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
# All the aliases
|
||||||
|
viAlias = true;
|
||||||
|
vimAlias = true;
|
||||||
|
vimdiffAlias = true;
|
||||||
|
|
||||||
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
vim-nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue