From 8e8035f0cb63dcde6c2ddd6db94a7e13bdb61008 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 15 Jul 2025 00:05:47 -0500 Subject: [PATCH] home/nixvim | start keybindings --- home/common/nixvim.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/home/common/nixvim.nix b/home/common/nixvim.nix index 3c04c14..773b24d 100644 --- a/home/common/nixvim.nix +++ b/home/common/nixvim.nix @@ -2,6 +2,17 @@ programs = { ripgrep.enable = true; nixvim = { + globals.mapleader = " "; + keymaps = [ + { + key = "e"; + action = ":Neotree"; + } + { + key = "gg"; + action = ":LazyGit"; + } + ]; enable = true; defaultEditor = true; colorschemes.dracula.enable = true;