From c56e16d87f016b334d0f347d93f616185636073b Mon Sep 17 00:00:00 2001 From: Garrit Franke Date: Sun, 23 May 2021 17:57:46 +0200 Subject: [PATCH] feat(vim): add gruvbox color scheme --- .config/nvim/init.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index a732ea1..53d06ce 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -9,6 +9,7 @@ if empty(glob('~/.vim/autoload/plug.vim')) endif call plug#begin() +Plug 'gruvbox-community/gruvbox' Plug 'scrooloose/syntastic' Plug 'itchyny/lightline.vim' Plug 'scrooloose/nerdtree' @@ -39,6 +40,8 @@ call plug#end() filetype plugin indent on " required +colorscheme gruvbox + let mapleader=" " " Set leader key syntax on " Enable syntax highlighting call matchadd('ColorColumn', '\%81v', 100) " Show a column after 80 chars @@ -51,11 +54,14 @@ set smartindent set expandtab set backspace=indent,eol,start set showmatch +set noswapfile set ignorecase +set scrolloff=8 set hidden set linebreak set laststatus=2 set noshowmode +set nohlsearch " CtrlP let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|target\|git'