Skip to content
Snippets Groups Projects
Commit dc90541b authored by Sebastian Semmler's avatar Sebastian Semmler
Browse files

Merge branch 'gitgutter'

* gitgutter:
  add git gutter
parents b1b84780 e734ac5e
No related branches found
No related tags found
No related merge requests found
......@@ -44,3 +44,6 @@
[submodule ".vim/bundle/VimCompletesMe"]
path = .vim/bundle/VimCompletesMe
url = https://github.com/ajh17/VimCompletesMe.git
[submodule ".vim/bundle/vim-gitgutter"]
path = .vim/bundle/vim-gitgutter
url = https://github.com/airblade/vim-gitgutter.git
......@@ -20,6 +20,7 @@ hi Normal cterm=none ctermbg=none ctermfg=15 gui=none
hi LineNr cterm=none ctermbg=none ctermfg=8 gui=none guibg=#282828 guifg=#8F8F8F
hi StatusLine cterm=none ctermbg=8 ctermfg=15 gui=none guibg=#5D5D5D guifg=#FBFBFB
hi StatusLineNC cterm=none ctermbg=15 ctermfg=8 gui=none guibg=#5D5D5D guifg=#FBFBFB
hi Todo cterm=none ctermbg=15 ctermfg=6 gui=none guibg=#2EB5C1 guifg=#F7F7F7
hi Search cterm=none ctermbg=6 ctermfg=15 gui=none guibg=#2EB5C1 guifg=#F7F7F7
hi IncSearch cterm=none ctermbg=3 ctermfg=8 gui=none guibg=#F6DC69 guifg=#8F8F8F
hi ColumnMargin cterm=none ctermbg=0 gui=none guibg=#000000
......@@ -94,3 +95,8 @@ hi link rubyInterpolation Interpolation
hi link rubyInterpolationDelimiter Interpolation
hi link rubyRailsMethod Method
" GitGutter
hi link GitGutterAdd Keyword
hi link GitGutterChange String
hi link GitGutterDelete Symbol
hi link GitGutterChangeDelete Identifier
......@@ -109,6 +109,10 @@ autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isT
set ttyfast " faster redraw
set backspace=indent,eol,start
" }}}
" Git-Gutter {{{
set signcolumn=yes
set updatetime=250
" }}}
" Backups {{{
set noswapfile
set nobackup
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment