home/nixvim | start keybindings

This commit is contained in:
Don Harper 2025-07-15 00:05:47 -05:00
parent 7f8fe0bb52
commit 8e8035f0cb

View file

@ -2,6 +2,17 @@
programs = {
ripgrep.enable = true;
nixvim = {
globals.mapleader = " ";
keymaps = [
{
key = "<leader>e";
action = ":Neotree<CR>";
}
{
key = "<leader>gg";
action = ":LazyGit<CR>";
}
];
enable = true;
defaultEditor = true;
colorschemes.dracula.enable = true;