Add some git config stuff and a git plugin for vim
This commit is contained in:
parent
78a17af0c6
commit
52e73a969d
|
@ -10,3 +10,9 @@
|
||||||
|
|
||||||
[http "https://gopkg.in"]
|
[http "https://gopkg.in"]
|
||||||
followRedirects = true
|
followRedirects = true
|
||||||
|
[diff]
|
||||||
|
tool = vimdiff
|
||||||
|
[difftool]
|
||||||
|
prompt = false
|
||||||
|
[alias]
|
||||||
|
d = difftool
|
||||||
|
|
|
@ -119,6 +119,7 @@ Plug 'dhruvasagar/vim-table-mode' " for creating and editing character tables
|
||||||
Plug 'lytedev/vim-superman' " view man pages with vim
|
Plug 'lytedev/vim-superman' " view man pages with vim
|
||||||
Plug 'tpope/vim-surround' " quickly modify text surrounding objects
|
Plug 'tpope/vim-surround' " quickly modify text surrounding objects
|
||||||
Plug 'tpope/vim-speeddating' " vim knows about date-like text objects
|
Plug 'tpope/vim-speeddating' " vim knows about date-like text objects
|
||||||
|
Plug 'tpope/vim-fugitive' " vim git stuff
|
||||||
Plug 'michaeljsmith/vim-indent-object' " adds an indentation level text object
|
Plug 'michaeljsmith/vim-indent-object' " adds an indentation level text object
|
||||||
Plug 'wellle/targets.vim' " adds some more handy text objects
|
Plug 'wellle/targets.vim' " adds some more handy text objects
|
||||||
Plug 'ternjs/tern_for_vim', { 'do': 'npm install' } " javascript helpful things
|
Plug 'ternjs/tern_for_vim', { 'do': 'npm install' } " javascript helpful things
|
||||||
|
|
Reference in a new issue