mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
22 lines
424 B
Lua
22 lines
424 B
Lua
|
local M = {}
|
||
|
if vim.g.pcode_columnline then
|
||
|
M = {
|
||
|
{
|
||
|
"lukas-reineke/virt-column.nvim",
|
||
|
event = "BufRead",
|
||
|
opts = {},
|
||
|
config = function()
|
||
|
local icons = vim.g.pcode_icons
|
||
|
require("virt-column").overwrite {
|
||
|
exclude = {
|
||
|
filetypes = { "help", "text", "markdown" },
|
||
|
},
|
||
|
char = icons.ui.LineMiddle,
|
||
|
}
|
||
|
end,
|
||
|
},
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|