diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-29 16:21:27 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-05-29 16:21:27 +0200 |
| commit | beaf5c7344c5bb978a634caf86750737a753c1b7 (patch) | |
| tree | 625f7dd59bd7c8f4593f370d3b2fbe1fa746b432 /plugin/50-git.lua | |
| parent | 4c8b0576c6984cbc83006fbd0c78064f4895bc60 (diff) | |
| download | nvim-config-beaf5c7344c5bb978a634caf86750737a753c1b7.tar.gz nvim-config-beaf5c7344c5bb978a634caf86750737a753c1b7.zip | |
refactor(nvim): group vim.pack.add() calls
This is to avoid getting many prompts when launching nvim and installing
the packages initially.
Diffstat (limited to 'plugin/50-git.lua')
| -rw-r--r-- | plugin/50-git.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugin/50-git.lua b/plugin/50-git.lua index 64e6cd0..c7177b2 100644 --- a/plugin/50-git.lua +++ b/plugin/50-git.lua @@ -2,8 +2,6 @@ -- Git-related utilities -- -vim.pack.add({ "https://github.com/airblade/vim-gitgutter" }) -- Show git status in the gutter - vim.keymap.set("n", "<Leader>gt", "<Cmd>GitGutterLineHighlightsToggle<CR>", { desc = "Toggle git line highlighting" }) vim.keymap.set("n", "<Leader>gg", "<Cmd>GitGutter<CR>", { desc = "Refresh GitGutter" }) vim.keymap.set("n", "<Leader>gq", "<Cmd>GitGutterQuickFix<CR>", { desc = "Git hunks to quickfix list" }) |
