22 lines
442 B
Nix
22 lines
442 B
Nix
|
{
|
||
|
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({})'';
|
||
|
};
|
||
|
}
|