From 9fc75d97f263fbaef11d96b7e1aef7f47e19cf90 Mon Sep 17 00:00:00 2001 From: jolzem Date: Sun, 26 Jan 2025 14:31:35 +0100 Subject: [PATCH] Removed color theme from nvim --- nvim/init.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/nvim/init.vim b/nvim/init.vim index c1b1d01..0dc00ec 100755 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -37,7 +37,6 @@ 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' @@ -46,8 +45,6 @@ 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