From 2af001c27d71cfb8e7fedc6605351ce23054bef2 Mon Sep 17 00:00:00 2001 From: jolzem Date: Wed, 20 Dec 2023 19:53:59 +0100 Subject: [PATCH] Added Gruvbox theme to nvim to improve contrast --- nvim/init.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index ce1b4a4..7ba8d50 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -37,6 +37,7 @@ call plug#begin("~/.local/share/nvim/site/autoload/plugged") Plug 'https://github.com/alvan/vim-closetag' Plug 'vim-airline/vim-airline' Plug 'https://github.com/github/copilot.vim' + Plug 'https://github.com/morhetz/gruvbox' call plug#end() let g:vimtex_view_method = 'zathura' @@ -45,6 +46,8 @@ let g:auto_save = 1 let mapleader ="," let g:airline#extensions#tabline#enabled = 1 +color gruvbox + " REMAPPING " jump to last known position when opening a file au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal! g'\"" | endif