add helpview.nvim

This commit is contained in:
Natalie 2025-05-21 13:56:17 -07:00
parent 212098b6e7
commit 0ea9675fc4
No known key found for this signature in database
GPG key ID: 61F4EAEB0C9C3D5F
3 changed files with 28 additions and 1 deletions

View file

@ -3,6 +3,7 @@
./keybinds.nix
./languages.nix
./latex.nix
./lean.nix
./ui.nix
];
}

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
vim = {
lazy.plugins."lean.nvim" = {
enabled = true;
package = pkgs.vimPlugins.lean-nvim;
lazy = true;
ft = "lean";
};
};
}

16
users/natalie/vim/ui.nix Normal file
View file

@ -0,0 +1,16 @@
{pkgs, ...}: {
vim = {
ui = {
borders = {
enable = true;
};
};
# Better help docs
lazy.plugins."helpview-nvim" = {
enabled = true;
package = pkgs.vimPlugins.helpview-nvim;
lazy = false;
};
};
}