feat(nvim): transparent theme

This commit is contained in:
thek4n 2024-04-10 10:29:36 +03:00
parent 9d2cce2688
commit 0a8cae743e
2 changed files with 18 additions and 3 deletions

View File

@ -57,7 +57,6 @@ opt.incsearch = true
opt.mousehide = true
opt.mouse = 'a'
opt.colorcolumn = '81'
opt.scrolloff = 999
@ -90,7 +89,7 @@ opt.directory = { prefix .. "/swap//" }
local function makeDirIfNoExists(path)
local path = path["_value"]
path = path["_value"]
if (vim.fn.isdirectory(path) == 0) then
vim.fn.mkdir(path, "p")
end

View File

@ -11,4 +11,20 @@ return {
{
'ellisonleao/gruvbox.nvim'
},
}
{
'xiyaowong/transparent.nvim',
config = function()
require("transparent").setup({
exclude_groups = {'CursorLine'},
})
end
},
{
'lukas-reineke/virt-column.nvim',
config = function()
require("virt-column").setup({
virtcolumn = '+1,81'
})
end
},
}