Neovim 0.5.0 migration #1

Merged
esensar merged 75 commits from neovim-0.5.0 into main 2021-07-05 09:34:51 +00:00
3 changed files with 4 additions and 5 deletions
Showing only changes of commit 87798c9091 - Show all commits

View file

@ -1,4 +1,3 @@
-- vim.o.termguicolors = true -- Does not look good with gruvbox -- vim.o.termguicolors = true -- Does not look good with gruvbox
vim.cmd([[set termguicolors]])
vim.o.background = "dark" vim.o.background = "dark"
vim.cmd([[colorscheme darcula]]) vim.cmd([[colorscheme gruvbox]])

View file

@ -20,7 +20,7 @@ return require('packer').startup {
use 'mhinz/vim-grepper' use 'mhinz/vim-grepper'
use 'direnv/direnv.vim' use 'direnv/direnv.vim'
use 'tpope/vim-speeddating' use 'tpope/vim-speeddating'
use 'doums/darcula' use 'flazz/vim-colorschemes'
-- Tools -- Tools
use 'tpope/vim-dispatch' use 'tpope/vim-dispatch'

View file

@ -3,8 +3,8 @@
" ----------------------------------------------------------------------------- " -----------------------------------------------------------------------------
function s:UpdateColors() function s:UpdateColors()
let ctermbg = synIDattr(synIDtrans(hlID('StatusLine')), 'bg', 'cterm') let ctermbg = synIDattr(synIDtrans(hlID('StatusLine')), 'fg', 'cterm')
let guibg = synIDattr(synIDtrans(hlID('StatusLine')), 'bg', 'gui') let guibg = synIDattr(synIDtrans(hlID('StatusLine')), 'fg', 'gui')
let idguifg1 = synIDattr(synIDtrans(hlID('Function')), 'fg', 'gui') let idguifg1 = synIDattr(synIDtrans(hlID('Function')), 'fg', 'gui')
let idctermfg1 = synIDattr(synIDtrans(hlID('Function')), 'fg', 'cterm') let idctermfg1 = synIDattr(synIDtrans(hlID('Function')), 'fg', 'cterm')
" Green in gruvbox " Green in gruvbox