From c2a3b0bcb5478601d8d695a9ef5cdc8951eef495 Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 25 May 2021 09:19:07 +0200 Subject: [PATCH] gruvbox vim --- files/.vimrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/files/.vimrc b/files/.vimrc index ddf345e..1b02b1e 100644 --- a/files/.vimrc +++ b/files/.vimrc @@ -12,7 +12,7 @@ let mapleader = "\" " ============================== vim-plug call plug#begin() -Plug 'arcticicestudio/nord-vim' " color scheme +Plug 'morhetz/gruvbox' " color scheme Plug 'tpope/vim-sleuth' " heuristic file indendation @@ -39,8 +39,8 @@ call plug#end() " ============================== Colors syntax on -set background=dark -colorscheme nord +set background=light +colorscheme gruvbox hi Normal ctermbg=NONE guibg=NONE set termguicolors @@ -79,7 +79,7 @@ function! FileNameWithIcon() abort return winwidth(0) > 70 ? WebDevIconsGetFileTypeSymbol() . ' ' . expand('%:T') : '' endfunction -let g:lightline = { 'colorscheme': 'nord' } +let g:lightline = { 'colorscheme': 'gruvbox' } let g:lightline.component_function = { 'gitstatus': 'GitStatus' } let g:lightline.component = { 'filename_with_icon': '%{FileNameWithIcon()}' }