changed colors

This commit is contained in:
Alexey 2025-08-18 16:20:18 +03:00
commit 610fada91d
5 changed files with 60 additions and 52 deletions

View file

@ -8,14 +8,6 @@ vim.o.cursorline = true
vim.cmd( 'syntax enable' )
vim.cmd( 'filetype plugin indent on' )
vim.cmd( 'colorscheme slate' )
vim.cmd [[
highlight Normal guibg=NONE ctermbg=NONE
highlight NonText guibg=NONE ctermbg=NONE
highlight EndOfBuffer guibg=NONE ctermbg=NONE
]]
vim.cmd [[
call plug#begin()
Plug 'preservim/nerdtree'
@ -28,9 +20,20 @@ vim.cmd [[
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp'
Plug 'stevedylandev/ansi-nvim'
call plug#end()
]]
vim.cmd( 'colorscheme ansi' )
vim.opt.termguicolors = false
vim.cmd [[
highlight Normal guibg=NONE ctermbg=NONE
highlight NonText guibg=NONE ctermbg=NONE
highlight EndOfBuffer guibg=NONE ctermbg=NONE
]]
local cmp = require 'cmp'
cmp.setup({