diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-06-29 14:58:03 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-06-29 14:58:03 +0000 |
commit | 40b6011b2ea289f75711faaf0571d6e3cb4e6619 (patch) | |
tree | 6918e34cc0ebb388b0c16c131230236e67bc7a6b /.config | |
parent | 933e0d8bf86c7fa91546250ad2e0400be2bbe418 (diff) | |
download | dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar.gz dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar.bz2 dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar.lz dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar.xz dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.tar.zst dotfiles-40b6011b2ea289f75711faaf0571d6e3cb4e6619.zip |
nvim: fix gitsigns deprecation
Diffstat (limited to '.config')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 6013069..2eba5f1 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -249,44 +249,6 @@ local function init_plugins() }) gitsigns.setup { - signs = { - add = { - hl = "GitSignsAdd"; - text = "│"; - numhl = "GitSignsAddNr"; - linehl = "GitSignsAddLn"; - }; - change = { - hl = "GitSignsChange"; - text = "│"; - numhl = "GitSignsChangeNr"; - linehl = "GitSignsChangeLn"; - }; - delete = { - hl = "GitSignsDelete"; - text = "_"; - numhl = "GitSignsDeleteNr"; - linehl = "GitSignsDeleteLn"; - }; - topdelete = { - hl = "GitSignsDelete"; - text = "‾"; - numhl = "GitSignsDeleteNr"; - linehl = "GitSignsDeleteLn"; - }; - changedelete = { - hl = "GitSignsChange"; - text = "~"; - numhl = "GitSignsChangeNr"; - linehl = "GitSignsChangeLn"; - }; - untracked = { - hl = "GitSignsAdd"; - text = "┆"; - numhl = "GitSignsAddNr"; - linehl = "GitSignsAddLn"; - }; - }; signcolumn = true; -- Toggle with `:Gitsigns toggle_signs` numhl = true; -- Toggle with `:Gitsigns toggle_numhl` linehl = false; -- Toggle with `:Gitsigns toggle_linehl` @@ -313,7 +275,6 @@ local function init_plugins() row = 0; col = 1; }; - yadm = { enable = false }; } marks.setup({ |