diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-17 15:45:54 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-17 15:45:54 -0400 |
| commit | c4e44dca7ec3bf0c89c1730db5544ce1a708826c (patch) | |
| tree | 27c463485e100945d10fc108f18775af3e5a98b5 /pkgs/custom-neovim/config/lua/plugins/git.lua | |
| parent | 89a88e24d00306076b067a0ccb87ad2a603054f3 (diff) | |
neovim: working on new config
Diffstat (limited to 'pkgs/custom-neovim/config/lua/plugins/git.lua')
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/git.lua | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/custom-neovim/config/lua/plugins/git.lua b/pkgs/custom-neovim/config/lua/plugins/git.lua index ce60214..d5ce713 100644 --- a/pkgs/custom-neovim/config/lua/plugins/git.lua +++ b/pkgs/custom-neovim/config/lua/plugins/git.lua @@ -1,6 +1,6 @@ return { { - "mini.git", + "mini-git", -- fsr this is named mini-git? lazy = false, cmd = "Git", after = function() @@ -20,7 +20,15 @@ return { cmd = "Neogit", after = function() vim.cmd.packadd("plenary.nvim") - require("neogit").setup() + require("neogit").setup { + kind = "floating", + mappings = { + status = { + ["<esc>"] = "Close", + ["<space>"] = "Toggle", + }, + }, + } end }, } |
