fix: turn off cursorline which was accidentally enabled

This commit is contained in:
2024-12-20 20:27:09 -05:00
parent cc5339aaa4
commit 0e91d19b94
+6 -3
View File
@@ -1,6 +1,9 @@
return { return {
'stevearc/oil.nvim', 'stevearc/oil.nvim',
dependencies = { 'nvim-tree/nvim-web-devicons' }, dependencies = {
-- 'echasnovski/mini.icons',
'nvim-tree/nvim-web-devicons',
},
cmd = 'Oil', cmd = 'Oil',
opts = { opts = {
default_file_explorer = false, default_file_explorer = false,
@@ -15,7 +18,7 @@ return {
win_options = { win_options = {
wrap = false, wrap = false,
signcolumn = 'yes', signcolumn = 'yes',
cursorcolumn = true, cursorcolumn = false,
foldcolumn = '0', foldcolumn = '0',
spell = false, spell = false,
list = false, list = false,
@@ -87,4 +90,4 @@ return {
border = 'rounded', border = 'rounded',
}, },
}, },
} }