mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
add: telescope theme
This commit is contained in:
parent
56e8da9c8e
commit
c5280b8d08
5 changed files with 199 additions and 155 deletions
21
lua/plugins/vertcolumn.lua
Normal file
21
lua/plugins/vertcolumn.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue