From fa0aae5a480e5707a82d51428bc544ac44338374 Mon Sep 17 00:00:00 2001 From: MaasOedipa Date: Mon, 15 Dec 2025 17:02:59 +0100 Subject: [PATCH] virtcolumn for long sections --- lua/custom/plugins/virtcolumn.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/custom/plugins/virtcolumn.lua diff --git a/lua/custom/plugins/virtcolumn.lua b/lua/custom/plugins/virtcolumn.lua new file mode 100644 index 00000000..663a5f28 --- /dev/null +++ b/lua/custom/plugins/virtcolumn.lua @@ -0,0 +1,19 @@ +-- See the kickstart.nvim README for more information +return { + 'lukas-reineke/virt-column.nvim', + config = function() + require('virt-column').setup { + virtcolumn = '80,120', + exclude = { + filetypes = { + 'help', + 'lazy', + 'mason', + 'dashboard', + 'NvimTree', + }, + }, + char = '|', + } + end, +}