Disabled nvim signcolumn (gutter)

This commit is contained in:
2025-08-26 16:00:02 +03:00
parent a6e44c040b
commit 0cea608f64
2 changed files with 1 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ vim.opt.shiftwidth = 4 -- number of spaces to insert on tab
-- UI
vim.opt.number = true
vim.opt.colorcolumn = '100'
vim.opt.signcolumn = 'auto:9'
vim.opt.signcolumn = 'no'
vim.opt.relativenumber = true
vim.opt.cursorline = true -- highlight current line
vim.opt.splitright = true

View File

@@ -1,9 +1,6 @@
return {
'lewis6991/gitsigns.nvim',
cmd = 'Gitsigns',
-- INFO: Disabled lazy loading to see if the errors stop
-- Not sure if it's an issue with lazy loading or just a gitsigns bug
-- INFO: re-enabled to see if the errors stop
event = 'VeryLazy',
config = function()
require('gitsigns').setup()