changed colors
This commit is contained in:
parent
c9538731f3
commit
610fada91d
5 changed files with 60 additions and 52 deletions
|
|
@ -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({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue