From ea216f80ea7bc87ca7828a0cc307030965a092bb Mon Sep 17 00:00:00 2001 From: Oliver Atkinson Date: Mon, 4 Sep 2023 21:24:01 -0600 Subject: [PATCH] theme --- .config/nvim/init.vim | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 93bbd61..8fe7a84 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -4,6 +4,8 @@ call plug#begin('~/.config/nvim/plugged') Plug 'https://github.com/vim-airline/vim-airline' " status bset mouse=aar on the bottom Plug 'https://github.com/preservim/nerdtree' " file tree Plug 'https://github.com/airblade/vim-gitgutter' " git diff +Plug 'luochen1990/rainbow' +Plug 'navarasu/onedark.nvim' " Plug 'https://github.com/weilbith/nvim-code-action-menu' " fix my shit helper window :) Plug 'neoclide/coc.nvim', {'branch': 'release'} " code completion @@ -20,10 +22,19 @@ call plug#end() :set updatetime=250 :set tabstop=4 shiftwidth=4 smarttab :highlight Comment ctermfg=Grey -:set background=light +" =============== Colors ==================== +let g:onedark_config = { + \ 'style': 'warmer', +\} +colorscheme onedark +:hi CocFloating guifg=clear guibg=#151515 +:hi Pmenu guibg=#151515 guifg=clear " =============== NERDTree Config ================================================ :let NERDTreeShowHidden=1 +" +" =============== Rainbow Config ================================================ +:let g:rainbow_active = 1 " =============== COC Config ================================================