aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nvim/lua/plugins/git.lua
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-04-21 01:24:36 +0100
commit4260b23f59752ca9e88161f649285da3cce82982 (patch)
treea4670b66f61ef493c846f61e315c8e5967726974 /dot_config/nvim/lua/plugins/git.lua
parentd029bb7b934c9ebe0ef82f159cd7332715860ec3 (diff)
downloaddotfiles-4260b23f59752ca9e88161f649285da3cce82982.tar.gz
dotfiles-4260b23f59752ca9e88161f649285da3cce82982.tar.bz2
dotfiles-4260b23f59752ca9e88161f649285da3cce82982.zip
style(lua): apply stylua formatting
Diffstat (limited to 'dot_config/nvim/lua/plugins/git.lua')
-rw-r--r--dot_config/nvim/lua/plugins/git.lua12
1 files changed, 2 insertions, 10 deletions
diff --git a/dot_config/nvim/lua/plugins/git.lua b/dot_config/nvim/lua/plugins/git.lua
index b052c33..8f4e571 100644
--- a/dot_config/nvim/lua/plugins/git.lua
+++ b/dot_config/nvim/lua/plugins/git.lua
@@ -101,17 +101,9 @@ require("gitsigns").setup({
nmap("<leader>hC", function()
gs.change_base("~")
end, "git [C]hange base to HEAD")
- nmap(
- "<leader>tgd",
- gs.preview_hunk_inline,
- "[T]oggle [G]it show [D]eleted"
- )
+ nmap("<leader>tgd", gs.preview_hunk_inline, "[T]oggle [G]it show [D]eleted")
nmap("<leader>tgw", gs.toggle_word_diff, "[T]oggle [G]it [W]ord diff")
- nmap(
- "<leader>tgl",
- gs.toggle_linehl,
- "[T]oggle [G]it [L]ine highlighting"
- )
+ nmap("<leader>tgl", gs.toggle_linehl, "[T]oggle [G]it [L]ine highlighting")
-- Text object
map(
{ "o", "x" },