nvim keymap: \t to open NvimTree

This commit is contained in:
Dave Gallant
2024-03-11 11:46:52 -04:00
parent 79ffa6b501
commit 9560ad6adc

View File

@@ -371,11 +371,15 @@ in
silent = true;
};
}
# copy to OS clipboard
{
key = "<leader>y";
mode = [ "v" ];
action = "\"+y";
action = "\"+y"; # copy to OS clipboard
}
{
key = "<leader>t";
mode = [ "n" ];
action = "<cmd>NvimTreeFindFileToggle<CR>";
}
{
key = "gD";