Initial commit

This commit is contained in:
Alexey 2026-02-24 11:55:27 +03:00
commit e7b4be7296
17 changed files with 213 additions and 0 deletions

15
lua/plugins/theme.lua Normal file
View 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,
}
}