From 424dbddab1f42857a8b05fa25a8079e9340373ee Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 29 Jul 2021 11:24:09 +0200 Subject: [PATCH] solarized; you're the only one <3 --- vim/.vimrc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 667a379..463c6de 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,15 +1,14 @@ if ($TERM=~"xterm-256color" || $TERM=~"screen-256color") call plug#begin('~/.vim/plugged') - Plug 'cormacrelf/vim-colors-github' + Plug 'mrckndt/vim-colors-solarized' Plug 'itchyny/lightline.vim' Plug 'mhinz/vim-signify' call plug#end() - colorscheme github - let g:lightline = { 'colorscheme': 'github' } + colorscheme solarized + let g:lightline = { 'colorscheme': 'solarized' } set background=light set noshowmode - set termguicolors endif filetype plugin indent on @@ -25,7 +24,7 @@ set ignorecase set incsearch set laststatus=2 set linebreak -set list listchars=trail:·,tab:▸\ ,eol:¬ +set list listchars=tab:▸\ ,trail:· set mouse=a set nofoldenable set nojoinspaces @@ -60,5 +59,5 @@ augroup vimrc autocmd FileType go setlocal noexpandtab sw=8 ts=8 " restore cursor - autocmd VimLeave * set guicursor=a:ver90 + "autocmd VimLeave * set guicursor=a:ver90 augroup END