From 97ef9a59db32a809aa80ecd24a9af0d7e1199990 Mon Sep 17 00:00:00 2001 From: Abdulrahman Sheikho Date: Thu, 12 Mar 2026 18:59:18 +0300 Subject: [PATCH] add-plugin: virt-column.nvim --- lua/plugins/virt-column.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lua/plugins/virt-column.lua diff --git a/lua/plugins/virt-column.lua b/lua/plugins/virt-column.lua new file mode 100644 index 00000000..e8e7902c --- /dev/null +++ b/lua/plugins/virt-column.lua @@ -0,0 +1,12 @@ +-- Display a character as the colorcolumn +return { + 'lukas-reineke/virt-column.nvim', + opts = { + char = '▕', -- This line is the whole idea of using virt-column + virtcolumn = '80,100', + highlight = 'CursorLineNr', -- match CursorLineNr highlight + exclude = { + filetypes = { 'oil' }, + }, + }, +}