15 lines
366 B
Lua
15 lines
366 B
Lua
return {
|
|
{
|
|
'stevedylandev/ansi-nvim',
|
|
config = function()
|
|
vim.opt.termguicolors = false
|
|
vim.cmd [[
|
|
colorscheme ansi
|
|
highlight Normal guibg=NONE ctermbg=NONE
|
|
highlight NonText guibg=NONE ctermbg=NONE
|
|
highlight EndOfBuffer guibg=NONE ctermbg=NONE
|
|
highlight CursorLine ctermbg=Black
|
|
]]
|
|
end,
|
|
}
|
|
}
|