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, +}