Added Gruvbox theme to nvim to improve contrast

This commit is contained in:
2023-12-20 19:53:59 +01:00
parent f1111f59fa
commit 2af001c27d
+3
View File
@@ -37,6 +37,7 @@ call plug#begin("~/.local/share/nvim/site/autoload/plugged")
Plug 'https://github.com/alvan/vim-closetag' Plug 'https://github.com/alvan/vim-closetag'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'https://github.com/github/copilot.vim' Plug 'https://github.com/github/copilot.vim'
Plug 'https://github.com/morhetz/gruvbox'
call plug#end() call plug#end()
let g:vimtex_view_method = 'zathura' let g:vimtex_view_method = 'zathura'
@@ -45,6 +46,8 @@ let g:auto_save = 1
let mapleader ="," let mapleader =","
let g:airline#extensions#tabline#enabled = 1 let g:airline#extensions#tabline#enabled = 1
color gruvbox
" REMAPPING " REMAPPING
" jump to last known position when opening a file " jump to last known position when opening a file
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g'\"" | endif au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g'\"" | endif