mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 03:26:40 -07:00
re-organize nixvim
This commit is contained in:
parent
7584b9ebfc
commit
10e3123b7f
22 changed files with 480 additions and 219 deletions
29
programs/nixvim/plugins/utility.nix
Normal file
29
programs/nixvim/plugins/utility.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.nixvim.plugins = {
|
||||
# Lazy loading support
|
||||
lz-n.enable = true;
|
||||
|
||||
# File manager
|
||||
oil = {
|
||||
enable = true;
|
||||
lazyLoad.settings.cmd = "Oil";
|
||||
};
|
||||
|
||||
# TODO comment highlighting
|
||||
todo-comments = {
|
||||
enable = true;
|
||||
keymaps.todoTelescope.key = "<leader>t";
|
||||
};
|
||||
|
||||
# Diagnostics list
|
||||
trouble.enable = true;
|
||||
|
||||
# Typst language preview
|
||||
typst-preview.enable = true;
|
||||
|
||||
# Key binding help
|
||||
which-key.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue