added webapi for gist.vim, added mercurial ignore, yankring config

main
Steffen Becker 12 years ago
parent c8f5534714
commit dda6ae5a7b

3
.gitmodules vendored

@ -115,3 +115,6 @@
[submodule "vim/bundle/pasta"]
path = vim/bundle/pasta
url = git://github.com/sickill/vim-pasta.git
[submodule "vim/bundle/webapi"]
path = vim/bundle/webapi
url = git://github.com/mattn/webapi-vim.git

@ -8,6 +8,7 @@ cd ~/Dotfiles
ln -s ~/Dotfiles/vim ~/.vim
ln -s ~/Dotfiles/gitconfig ~/.gitconfig
ln -s ~/Dotfiles/gitignore ~/.gitignore
ln -s ~/Dotfiles/hgignore_global ~/.hgignore_global
ln -s ~/Dotfiles/inputrc ~/.inputrc
ln -s ~/Dotfiles/jshintrc ~/.jshintrc
ln -s ~/Dotfiles/pearrc ~/.pearrc
@ -44,7 +45,7 @@ Restart your terminal and vim, and you are ready to go.
- ctrlp
- easymotion
- fugitive
- gist
- gist (more config needed, see github page)
- indent-guides
- indent-object
- matchit

@ -0,0 +1,4 @@
syntax: glob
*~
.DS_Store

@ -1 +1 @@
Subproject commit 9416edfb3b8c96be15b46367a7bd48d66154a05f
Subproject commit c35bf8ed1732e6a0b8fbaad558692b3a2484745e

@ -1 +1 @@
Subproject commit 96bd4b37f4459f30cc6963142aff6697e42bf69e
Subproject commit 4e38004029c50ae22a0e32432ff5f5a0893910fc

@ -1 +1 @@
Subproject commit 5954a994fba2ce75c92d9d211487534c2a525824
Subproject commit 51b2d74b2bd15c9627f95896b85ea4df37d115c7

@ -1 +1 @@
Subproject commit 6148d1381064d4103f4a7fb911bf6200ad1f4587
Subproject commit 827c47c10b8ce97fc8982329e4236584e73826cf

@ -1 +1 @@
Subproject commit 9baa7cec7dbfb161a0c7eab696e21a83254b9eff
Subproject commit 2737231a45b02e54c53c1912ba06d7e77502cb46

@ -1 +1 @@
Subproject commit 4a0a5c58fc1136f76c04a11f5fd0feeca4874b40
Subproject commit 269f8920f0c11f7d46e04cf3119ab8e258177a6c

@ -1 +1 @@
Subproject commit 6e1d7c39a8e9545b6f2d44dfff81a5d77efad6c8
Subproject commit ee35ab6954a11337a2b52003d07fabe442843b68

@ -1 +1 @@
Subproject commit ec9bf2e983463445b15e1df20c2d774e9bf7361b
Subproject commit 1e94b987052e91d925ce93b331507cda5225e4b8

@ -1 +1 @@
Subproject commit ee1c4e137e33c64c787df68efcca7e9af4c5f790
Subproject commit 2e0d125b79a0714fd72b4e0933a9f12935824443

@ -1 +1 @@
Subproject commit 7e53a4e011e89631f065d0d5c24e39cba77f5aa8
Subproject commit 5fbb1a9cf6e875bdc005e5ada62f078cf653bcd8

@ -0,0 +1 @@
Subproject commit d18dc67d6d4747f084848280a7b44f0ed51a2f48

@ -212,8 +212,10 @@ let g:syntastic_mode_map = { 'mode': 'active',
nnoremap <leader>y :YRShow<CR>
inoremap <leader>y :YRShow<CR>
" Prevent YankRing.vim from polluting $HOME:
let g:yankring_history_dir = '$VIM'
let g:yankring_history_dir = '$HOME'
let g:yankring_window_height = 12
let g:yankring_min_element_length = 2
let g:yankring_history_file = '.yankring'
" Buffergator
let g:buffergator_display_regime='filepath'
@ -237,6 +239,9 @@ let g:ctrlp_working_path_mode = 0
let g:ctrlp_max_height = 12
let g:ctrlp_custom_ignore = '\.git$\|\.hg$\|\.svn$\|\.sass-cache$'
" Gist filetype-detection
let g:gist_detect_filetype = 1
" custom shift-tab mapping -- opens new { } and blank line
" Supertab and snipmate backwards-key are overwritten to use shfit + alt / crtl
let g:SuperTabMappingBackward = '<s-c-tab>'

Loading…
Cancel
Save