Files
nixos-config/glasshouse-desktop/dotfiles/packages/nixvim/config/keymaps.nix
2024-09-26 15:54:48 -04:00

26 lines
367 B
Nix

{
keymaps = [
{
action = "<cmd>FloatermToggle shadeterm<CR>";
key = "<F2>";
mode = "n";
}
{
action = "<cmd>NvimTreeToggle<CR>";
key = "<F3>";
mode = "n";
}
{
action = "<cmd>FloatermToggle shadeterm<CR>";
key = "<F2>";
mode = "t";
}
{
action = "<cmd>FloatermKill rangerterm<CR>";
key = "<F3>";
mode = "t";
}
];
}