feat: all yanky and debugprint
This commit is contained in:
parent
eaf110c96f
commit
63bbeaca3b
7 changed files with 221 additions and 7 deletions
30
home-manager/modules/neovim/plugins/indent-blankline.nix
Normal file
30
home-manager/modules/neovim/plugins/indent-blankline.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{...}: {
|
||||
programs.nixvim = {
|
||||
plugins.indent-blankline = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
scope.enabled = false;
|
||||
};
|
||||
};
|
||||
|
||||
keymaps = [
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>ui";
|
||||
action = "<cmd>IBLToggle<CR>";
|
||||
options = {
|
||||
desc = "Indent-Blankline toggle";
|
||||
};
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>uI";
|
||||
action = "<cmd>IBLToggleScope<CR>";
|
||||
options = {
|
||||
desc = "Indent-Blankline Scope toggle";
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue