diff --git a/lua/config/plugins/gitsigns.lua b/lua/config/plugins/gitsigns.lua index 7d581eb..6437554 100644 --- a/lua/config/plugins/gitsigns.lua +++ b/lua/config/plugins/gitsigns.lua @@ -1,49 +1,31 @@ -require("gitsigns").setup({ +require('gitsigns').setup { signs = { - add = { - text = " ┃", - }, - change = { - text = " ┃", - }, - delete = { - text = " ", - }, - topdelete = { - text = " ", - }, - changedelete = { - text = " ┃", - }, + add = { text = '┃' }, + change = { text = '┃' }, + delete = { text = '' }, + topdelete = { text = '' }, + changedelete = { text = '┃' }, + untracked = { text = ' ' }, }, signs_staged = { - add = { - text = " ┃", - }, - change = { - text = " ┃", - }, - delete = { - text = " ", - }, - topdelete = { - text = " ", - }, - changedelete = { - text = " ┃", - }, + add = { text = '┃' }, + change = { text = '┃' }, + delete = { text = '' }, + topdelete = { text = '' }, + changedelete = { text = '┃' }, + untracked = { text = ' ' }, }, signcolumn = true, numhl = false, linehl = false, word_diff = false, - watch_gitdir = { - interval = 1000, - follow_files = true, - }, - attach_to_untracked = true, - current_line_blame = false, -- Toggle with `:Gitsigns toggle_current_line_blame` - current_line_blame_opts = { + watch_gitdir = { + interval = 1000, + follow_files = true, + }, + attach_to_untracked = true, + current_line_blame = false, -- Toggle with `:Gitsigns toggle_current_line_blame` + current_line_blame_opts = { virt_text = true, virt_text_pos = "eol", -- 'eol' | 'overlay' | 'right_align' delay = 1000, @@ -55,13 +37,12 @@ require("gitsigns").setup({ update_debounce = 200, max_file_length = 40000, preview_config = { - -- Options passed to nvim_open_win + -- Options passed to nvim_open_win border = "rounded", style = "minimal", relative = "cursor", row = 0, - col = 1, + vcol = 1, }, yadm = { enable = false }, -}) - +}