mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
21 lines
424 B
Lua
21 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
|