mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 07:13:46 -05:00
20 lines
587 B
VimL
20 lines
587 B
VimL
" -----------------------------------------------------------------------------
|
|
" File: gruvbox.vim
|
|
" Description: Retro groove color scheme for Vim
|
|
" Author: morhetz <morhetz@gmail.com>
|
|
" Source: https://github.com/morhetz/gruvbox
|
|
" Last Modified: 09 Apr 2014
|
|
" -----------------------------------------------------------------------------
|
|
|
|
function! gruvbox#invert_signs_toggle()
|
|
if g:gruvbox_invert_signs == 0
|
|
let g:gruvbox_invert_signs=1
|
|
else
|
|
let g:gruvbox_invert_signs=0
|
|
endif
|
|
|
|
colorscheme gruvbox
|
|
endfunction
|
|
|
|
" vim: set sw=2 ts=2 sts=2 et tw=80 ft=vim fdm=marker:
|