add helpview.nvim
This commit is contained in:
parent
212098b6e7
commit
0ea9675fc4
3 changed files with 28 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
./keybinds.nix
|
||||
./languages.nix
|
||||
./latex.nix
|
||||
./lean.nix
|
||||
./ui.nix
|
||||
];
|
||||
|
||||
}
|
||||
|
|
10
users/natalie/vim/lean.nix
Normal file
10
users/natalie/vim/lean.nix
Normal 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
16
users/natalie/vim/ui.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue