Nix-Hyprland/nixos/modules/nixvim/keymaps.nix
2024-04-17 05:52:14 +05:00

16 lines
211 B
Nix

{
programs.nixvim = {
globals = {
mapleader = "\\";
maplocalleader = "\\";
};
keymaps = [
{
key = "<leader>n";
action = "<cmd>Neotree<CR>";
}
];
};
}