Initial commit
This commit is contained in:
commit
e7b4be7296
17 changed files with 213 additions and 0 deletions
15
lua/plugins/theme.lua
Normal file
15
lua/plugins/theme.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
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,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue