add: telescope theme

This commit is contained in:
asep.komarudin 2024-06-07 20:15:49 +07:00
parent 56e8da9c8e
commit c5280b8d08
5 changed files with 199 additions and 155 deletions

View file

@ -0,0 +1,21 @@
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