From 0e91d19b945db07ad71997e6104e217848f0bab7 Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Fri, 20 Dec 2024 20:27:09 -0500 Subject: [PATCH] fix: turn off cursorline which was accidentally enabled --- .config/nvim/lua/plugins/oil.lua | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.config/nvim/lua/plugins/oil.lua b/.config/nvim/lua/plugins/oil.lua index 81d80e6..e608406 100644 --- a/.config/nvim/lua/plugins/oil.lua +++ b/.config/nvim/lua/plugins/oil.lua @@ -1,6 +1,9 @@ return { 'stevearc/oil.nvim', - dependencies = { 'nvim-tree/nvim-web-devicons' }, + dependencies = { + -- 'echasnovski/mini.icons', + 'nvim-tree/nvim-web-devicons', + }, cmd = 'Oil', opts = { default_file_explorer = false, @@ -15,7 +18,7 @@ return { win_options = { wrap = false, signcolumn = 'yes', - cursorcolumn = true, + cursorcolumn = false, foldcolumn = '0', spell = false, list = false, @@ -87,4 +90,4 @@ return { border = 'rounded', }, }, -} +} \ No newline at end of file