summaryrefslogtreecommitdiffstats
path: root/.config/nvim/plugin/50-git.lua
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-12 17:02:54 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-12 22:57:34 +0200
commit1734929edd6ceb47fcee53cb9d0a408b41dea14a (patch)
tree2bd06885ddd5f91656dfb7851ddb3446e6a2ca74 /.config/nvim/plugin/50-git.lua
parentc3c0fe51524d0e7bbc2d93fb9ee0127db691287a (diff)
downloaddotfiles-1734929edd6ceb47fcee53cb9d0a408b41dea14a.tar.gz
dotfiles-1734929edd6ceb47fcee53cb9d0a408b41dea14a.zip
misc(nvim): reformat lua files to 100 char line width
Diffstat (limited to '.config/nvim/plugin/50-git.lua')
-rw-r--r--.config/nvim/plugin/50-git.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/nvim/plugin/50-git.lua b/.config/nvim/plugin/50-git.lua
index 513074f..8bebef1 100644
--- a/.config/nvim/plugin/50-git.lua
+++ b/.config/nvim/plugin/50-git.lua
@@ -70,7 +70,11 @@ local git_blame_toggle = (function()
end
end)()
-vim.api.nvim_create_user_command("GitBlame", git_blame_toggle, { desc = "Open/enter git blame window" })
+vim.api.nvim_create_user_command(
+ "GitBlame",
+ git_blame_toggle,
+ { desc = "Open/enter git blame window" }
+)
-- The original mappings from the plugin are broken
vim.keymap.set("n", "]c", "<Cmd>GitGutterNextHunk<CR>", { desc = "Next git hunk" })