removed unused vim bundles, updated others

main
Steffen Becker 12 years ago
parent 5c5f7d2921
commit 5445924d2f

12
.gitmodules vendored

@ -61,9 +61,6 @@
[submodule "vim/bundle/jellybeans"]
path = vim/bundle/jellybeans
url = git://github.com/nanotech/jellybeans.vim.git
[submodule "vim/bundle/browser-refresh"]
path = vim/bundle/browser-refresh
url = git://github.com/mkitt/browser-refresh.vim.git
[submodule "vim/bundle/typoscript"]
path = vim/bundle/typoscript
url = git://github.com/nebelschwade/typoscript-vim.git
@ -73,9 +70,6 @@
[submodule "vim/bundle/php-indent"]
path = vim/bundle/php-indent
url = git://github.com/2072/PHP-Indenting-for-VIm.git
[submodule "vim/bundle/indent-guides"]
path = vim/bundle/indent-guides
url = git://github.com/nathanaelkane/vim-indent-guides.git
[submodule "vim/bundle/nerdtree"]
path = vim/bundle/nerdtree
url = git://github.com/scrooloose/nerdtree.git
@ -100,18 +94,12 @@
[submodule "vim/bundle/git"]
path = vim/bundle/git
url = git://github.com/tpope/vim-git.git
[submodule "vim/bundle/tagbar"]
path = vim/bundle/tagbar
url = git://github.com/majutsushi/tagbar.git
[submodule "vim/bundle/ctrlp"]
path = vim/bundle/ctrlp
url = git://github.com/kien/ctrlp.vim.git
[submodule "vim/bundle/scss"]
path = vim/bundle/scss
url = git://github.com/cakebaker/scss-syntax.vim.git
[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

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

@ -1 +1 @@
Subproject commit 7251d9dce85e45b41dab00d7d7032713847ed5ea
Subproject commit 4f7d0a30f4122fb4ed92cafb799ab93d58f376c7

@ -1 +1 @@
Subproject commit 003f38c6a4d8e3d527e4e1dfeab6fdf05c8ff149
Subproject commit 6f380fa8c6daf301fc5e8a5d650c54be24e5b2c9

@ -1 +0,0 @@
Subproject commit 5bc809d0558d7086075ef8ff1d05dec0f403b2c1

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

@ -1 +1 @@
Subproject commit e77388ca26d2455c3bec32a827c5c91daac4e960
Subproject commit b455022b642bf8d493a9fe6c70c2de1df738d3e5

@ -1 +1 @@
Subproject commit d448f180e4a0c0ecd4c80cac62fa84d8403e6efa
Subproject commit 122e88b82a22652a72fdce17dd8c92abcb8a560a

@ -1 +0,0 @@
Subproject commit 568ef5fd25468a58723b50cf40a48c5dcb46c802

@ -1 +1 @@
Subproject commit 3ac0fde75b79aad302abaa2f367f8a48deddbd41
Subproject commit 33d67f06caf35569fd8a7eb0299f44a3c5006cfb

24
vimrc

@ -161,8 +161,6 @@ inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
nmap <leader>p <C-^>
" but use them for usefull stuff -- switching buffers
nnoremap <left> :bp<cr>
nnoremap <right> :bn<cr>
@ -181,19 +179,17 @@ imap <C-right> <Esc>>>i
vmap <C-left> <gv
vmap <C-right> >gv
set pastetoggle=<F2> " toggle paste-mode for c&p with F2
set pastetoggle=<F2> " toggle paste-mode for c&p with F2
" Yank text to the OS X clipboard
noremap <leader>y "*y
noremap <leader>Y "*Y
" Preserve indentation while pasting text from the OS X clipboard
noremap <leader>p :set paste<CR>:put *<CR>:set nopaste<CR>
" paste keeping indentation
nnoremap <leader>p p`[v`]=
" no HELP while mishitting ESC - awesome
inoremap <F1> <ESC>
nnoremap <F1> <ESC>
vnoremap <F1> <ESC>
" stupid ex-mode and man-page stuff
nnoremap Q <nop>
nnoremap K <nop>
@ -233,11 +229,6 @@ nnoremap <leader>/ :TComment<CR>
vnoremap <leader>/ :TComment<CR>
inoremap <leader>/ <Esc>:TComment<CR>i
" refresh browser mapping
nnoremap <silent><leader>r :wall<CR> :RRB<CR>
" Browser-Refresh config -- only use chrome
let g:RefreshRunningBrowserDefault = 'chrome'
" easymotion config leader m
let g:EasyMotion_leader_key = '<leader>m'
@ -266,21 +257,14 @@ let g:buffergator_viewport_split_policy='B'
let g:buffergator_split_size=12
nnoremap <leader>b :BuffergatorToggle<cr>
" Tagbar config and keyboard toggler
nmap <F8> :TagbarToggle<CR>
let g:tagbar_autofocus=1
let g:tagbar_autoclose=1
let g:tagbar_compact=1
" CtrlP
let g:ctrlp_map = '<leader>t'
let g:ctrlp_switch_buffer = 0 " easier split screens
let g:ctrlp_working_path_mode = 0
let g:ctrlp_max_height = 12
let g:ctrlp_custom_ignore = { 'dir': '\v[\/](\.git|\.hg|\.svn|node_modules|\.sass-cache)$',
\ 'file': '\.exe$\|\.so$\|\.dll$\|\.psd$\|\.png$\|\.jpg$\|\.gif$',
\ }
" easier split screens
let g:ctrlp_switch_buffer = 0
" Gist filetype-detection
let g:gist_detect_filetype = 1

Loading…
Cancel
Save