From d154da8eac42cb081ca342bb4d87663053ffc1e5 Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 26 Jul 2021 11:18:55 +0200 Subject: [PATCH] add github colorscheme --- vim/.vimrc | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 48dffb0..667a379 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -1,15 +1,15 @@ if ($TERM=~"xterm-256color" || $TERM=~"screen-256color") call plug#begin('~/.vim/plugged') - Plug 'flexo3001/vim-colors-solarized' + Plug 'cormacrelf/vim-colors-github' + Plug 'itchyny/lightline.vim' Plug 'mhinz/vim-signify' - - " language plugins - Plug 'neovimhaskell/haskell-vim' - Plug 'pearofducks/ansible-vim' call plug#end() - colorscheme solarized + colorscheme github + let g:lightline = { 'colorscheme': 'github' } set background=light + set noshowmode + set termguicolors endif filetype plugin indent on @@ -58,4 +58,7 @@ augroup vimrc autocmd FileType puppet setlocal tw=140 autocmd FileType bash,zsh,sh,ruby,yaml setlocal sw=2 autocmd FileType go setlocal noexpandtab sw=8 ts=8 + + " restore cursor + autocmd VimLeave * set guicursor=a:ver90 augroup END