moved nixvim into own home-manager module.
moved pass store location.
This commit is contained in:
parent
bbc6beb3da
commit
2253c6c34a
28 changed files with 24 additions and 11 deletions
21
modules/home-manager/nvim/simpleplugins.nix
Normal file
21
modules/home-manager/nvim/simpleplugins.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
configs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.nixvim = {
|
||||
plugins.comment-nvim.enable = true;
|
||||
plugins.marks.enable = true;
|
||||
plugins.surround.enable = true;
|
||||
plugins.todo-comments.enable = true;
|
||||
plugins.leap = {
|
||||
enable = true;
|
||||
addDefaultMappings = true;
|
||||
};
|
||||
extraPlugins = with pkgs.vimPlugins; [
|
||||
vim-numbertoggle
|
||||
dressing-nvim
|
||||
];
|
||||
extraConfigLua = ''require("dressing").setup({})'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue