diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-12 17:02:54 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-12 22:57:34 +0200 |
| commit | 527c8940bf710aac2e52e2041f148cab71b4a132 (patch) | |
| tree | 80c7d1d6d3c6ee35ee3bc0adb50099316934f485 /plugin/50-git.lua | |
| parent | 0474f63214d561459a81dd1637433819cc7c799b (diff) | |
| download | nvim-config-527c8940bf710aac2e52e2041f148cab71b4a132.tar.gz nvim-config-527c8940bf710aac2e52e2041f148cab71b4a132.zip | |
misc(nvim): reformat lua files to 100 char line width
Diffstat (limited to 'plugin/50-git.lua')
| -rw-r--r-- | plugin/50-git.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugin/50-git.lua b/plugin/50-git.lua index 513074f..8bebef1 100644 --- a/plugin/50-git.lua +++ b/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" }) |
