mirror of https://github.com/akelge/vim
Git support
This commit is contained in:
parent
c592d73e49
commit
dd5d90932b
|
@ -1,4 +1,5 @@
|
||||||
bundle/
|
bundle/
|
||||||
|
view/
|
||||||
gvimrc.local
|
gvimrc.local
|
||||||
vimrc.local
|
vimrc.local
|
||||||
.netrwhist
|
.netrwhist
|
||||||
|
|
|
@ -76,3 +76,9 @@
|
||||||
[submodule "pack/local/start/nerdtree-git-plugin"]
|
[submodule "pack/local/start/nerdtree-git-plugin"]
|
||||||
path = pack/local/start/nerdtree-git-plugin
|
path = pack/local/start/nerdtree-git-plugin
|
||||||
url = git@github.com:Xuyuanp/nerdtree-git-plugin.git
|
url = git@github.com:Xuyuanp/nerdtree-git-plugin.git
|
||||||
|
[submodule "pack/local/start/vim-gitgutter"]
|
||||||
|
path = pack/local/start/vim-gitgutter
|
||||||
|
url = https://github.com/airblade/vim-gitgutter.git
|
||||||
|
[submodule "pack/local/start/git-support"]
|
||||||
|
path = pack/local/start/git-support
|
||||||
|
url = git@github.com:WolfgangMehner/git-support.git
|
||||||
|
|
9
gvimrc
9
gvimrc
|
@ -75,6 +75,15 @@ endif
|
||||||
autocmd BufWritePost ~/.gvimrc so ~/.gvimrc
|
autocmd BufWritePost ~/.gvimrc so ~/.gvimrc
|
||||||
autocmd BufWritePost ~/.vim/gvimrc so ~/.vim/gvimrc
|
autocmd BufWritePost ~/.vim/gvimrc so ~/.vim/gvimrc
|
||||||
|
|
||||||
|
let g:terminal_ansi_colors = ['#073642', '#dc322f', \
|
||||||
|
'#859900', '#b58900', \
|
||||||
|
'#268bd2', '#d33682', \
|
||||||
|
'#2aa198', '#eee8d5', \
|
||||||
|
'#002b36', '#cb4b16', \
|
||||||
|
'#93a1a1', '#839496', \
|
||||||
|
'#657b83', '#6c71c4', \
|
||||||
|
'#586e75', '#fdf6e3']
|
||||||
|
|
||||||
" User customizations are held in file ~/.vim/gvimrc.local
|
" User customizations are held in file ~/.vim/gvimrc.local
|
||||||
if filereadable($HOME."/.vim/gvimrc.local")
|
if filereadable($HOME."/.vim/gvimrc.local")
|
||||||
source $HOME/.vim/gvimrc.local
|
source $HOME/.vim/gvimrc.local
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit dc53934abfc23bf27f98921c8b46731c5ee8814b
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 0f98634b92da9a35580b618c11a6d2adc42d9f90
|
11
vimrc
11
vimrc
|
@ -129,6 +129,17 @@ let NERDCreateDefaultMappings=1
|
||||||
" """""""""""""""""
|
" """""""""""""""""
|
||||||
let g:templates_directory=[$HOME.'/.vim/templates', 'templates']
|
let g:templates_directory=[$HOME.'/.vim/templates', 'templates']
|
||||||
|
|
||||||
|
"""""""""""""""
|
||||||
|
" Terminal
|
||||||
|
"""""""""""""""
|
||||||
|
set termwinsize=10*0
|
||||||
|
nnoremap <silent> <Leader>tt :below terminal<CR>
|
||||||
|
|
||||||
|
"""""""""""""""
|
||||||
|
" GIT
|
||||||
|
"""""""""""""""
|
||||||
|
nnoremap <silent> <Leader>gg :GitGutterLineHighlightsToggle<CR>
|
||||||
|
|
||||||
" """""""""""""""""
|
" """""""""""""""""
|
||||||
" Airline customizations
|
" Airline customizations
|
||||||
" """""""""""""""""
|
" """""""""""""""""
|
||||||
|
|
Loading…
Reference in New Issue