Nix-Hyprland/nixos/modules/nixvim/keymaps.nix

16 lines
211 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
programs.nixvim = {
globals = {
mapleader = "\\";
maplocalleader = "\\";
};
keymaps = [
{
key = "<leader>n";
action = "<cmd>Neotree<CR>";
}
];
};
}