diff options
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-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({ |