Disabled nvim signcolumn (gutter)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user