diff options
| author | Tharre <tharre3@gmail.com> | 2019-06-09 04:02:53 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2019-06-09 04:04:01 +0200 | 
| commit | bdccf9ca07d2144cdab2337a4222fc63aeb3c488 (patch) | |
| tree | f778616debf75e83a79f094b496ada74b1b98efd | |
| parent | 8d4b997f87008d92fa92c7e27f48d50da2a61150 (diff) | |
| download | dotfiles-bdccf9ca07d2144cdab2337a4222fc63aeb3c488.tar.gz dotfiles-bdccf9ca07d2144cdab2337a4222fc63aeb3c488.tar.xz dotfiles-bdccf9ca07d2144cdab2337a4222fc63aeb3c488.zip | |
vim: add signify plugin
| -rw-r--r-- | .gitmodules | 3 | ||||
| m--------- | .vim/bundle/vim-signify | 0 | ||||
| -rw-r--r-- | .vimrc | 3 | 
3 files changed, 6 insertions, 0 deletions
| diff --git a/.gitmodules b/.gitmodules index d7f8e68..71b6839 100644 --- a/.gitmodules +++ b/.gitmodules @@ -74,3 +74,6 @@  [submodule ".zsh/zsh-completions"]  	path = .zsh/zsh-completions  	url = https://github.com/zsh-users/zsh-completions.git +[submodule "vim-signify"] +	path = .vim/bundle/vim-signify +	url = https://github.com/mhinz/vim-signify.git diff --git a/.vim/bundle/vim-signify b/.vim/bundle/vim-signify new file mode 160000 +Subproject ac23bd95d5fe0c7a7bf4a331e9d37eb72697c46 @@ -184,6 +184,7 @@ set laststatus=2  let g:airline_theme = 'powerlineish'  let g:airline#extensions#tabline#enabled = 1  let g:airline#extensions#tabline#fnamemod = ':t' +let g:airline#extensions#hunks#non_zero_only = 1  " only enable trailing whitespace checking  let g:airline#extensions#whitespace#checks = [ 'trailing' ]  let g:airline#extensions#wordcount#enabled = 0 " extremely slow on bigger files @@ -212,6 +213,8 @@ let g:vim_markdown_math = 1  " hexmode  let g:hexmode_patterns = '*.bin,*.exe,*.dat,*.rom' +" signify +let g:signify_realtime = 1  " }}}  " vim:fdm=marker | 
