feat(nvim): transparent theme
This commit is contained in:
parent
9d2cce2688
commit
0a8cae743e
@ -57,7 +57,6 @@ opt.incsearch = true
|
|||||||
opt.mousehide = true
|
opt.mousehide = true
|
||||||
opt.mouse = 'a'
|
opt.mouse = 'a'
|
||||||
|
|
||||||
opt.colorcolumn = '81'
|
|
||||||
opt.scrolloff = 999
|
opt.scrolloff = 999
|
||||||
|
|
||||||
|
|
||||||
@ -90,7 +89,7 @@ opt.directory = { prefix .. "/swap//" }
|
|||||||
|
|
||||||
|
|
||||||
local function makeDirIfNoExists(path)
|
local function makeDirIfNoExists(path)
|
||||||
local path = path["_value"]
|
path = path["_value"]
|
||||||
if (vim.fn.isdirectory(path) == 0) then
|
if (vim.fn.isdirectory(path) == 0) then
|
||||||
vim.fn.mkdir(path, "p")
|
vim.fn.mkdir(path, "p")
|
||||||
end
|
end
|
||||||
|
|||||||
@ -11,4 +11,20 @@ return {
|
|||||||
{
|
{
|
||||||
'ellisonleao/gruvbox.nvim'
|
'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
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user