Files
shed/glasshouse-desktop/dotfiles/packages/nixvim/config/keymaps.nix
2024-09-26 16:11:04 -04:00

45 lines
594 B
Nix

{
keymaps = [
{
action = "<C-w>h";
key = "<C-h>";
mode = "i";
}
{
action = "<C-w>h";
key = "<C-h>";
mode = "n";
}
{
action = "<C-w>j";
key = "<C-j>";
mode = "n";
}
{
action = "<C-w>k";
key = "<C-k>";
mode = "n";
}
{
action = "<C-w>l";
key = "<C-l>";
mode = "n";
}
{
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";
}
];
}