Update vundle for vim

This commit is contained in:
Thomas Ruoff
2014-06-15 23:25:01 +02:00
parent 54f6f55582
commit 71017e7fe8
4 changed files with 37 additions and 23 deletions

2
.gitignore vendored
View File

@@ -1,6 +1,6 @@
irssi irssi
vim/bundle/* vim/bundle/*
!vim/bundle/vundle !vim/bundle/Vundle.vim
vim/spell vim/spell
.netrwhist .netrwhist

6
.gitmodules vendored
View File

@@ -1,9 +1,9 @@
[submodule "vim/bundle/vundle"]
path = vim/bundle/vundle
url = git://github.com/gmarik/vundle.git
[submodule "zsh/zilsh"] [submodule "zsh/zilsh"]
path = zsh/zilsh path = zsh/zilsh
url = git@github.com:zilsh/zilsh.git url = git@github.com:zilsh/zilsh.git
[submodule "zsh/bundle/oh-my-zilsh"] [submodule "zsh/bundle/oh-my-zilsh"]
path = zsh/bundle/oh-my-zilsh path = zsh/bundle/oh-my-zilsh
url = git@github.com:zilsh/oh-my-zilsh.git url = git@github.com:zilsh/oh-my-zilsh.git
[submodule "vim/bundle/Vundle.vim"]
path = vim/bundle/Vundle.vim
url = https://github.com/gmarik/Vundle.vim.git

52
vimrc
View File

@@ -3,28 +3,38 @@ set nocompatible
" Vundle " Vundle
filetype off " required! filetype off " required!
set rtp+=~/.vim/bundle/vundle/ " set the runtime path to include Vundle and initialize
call vundle#rc() set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" My Bundles here: " let Vundle manage Vundle, required
" Plugin 'gmarik/Vundle.vim'
" original repos on github
Bundle 'gmarik/vundle' Plugin 'L9'
Bundle 'scrooloose/nerdtree'
Bundle 'pangloss/vim-javascript' Plugin 'clones/vim-fuzzyfinder'
Bundle 'tpope/vim-fugitive' Plugin 'scrooloose/nerdtree'
Bundle 'clones/vim-l9' Plugin 'kien/ctrlp.vim'
Bundle 'clones/vim-fuzzyfinder' Plugin 'maxbrunsfeld/vim-yankstack', {'name': 'yankstack'}
Bundle 'scrooloose/syntastic.git'
Bundle 'kien/ctrlp.vim' Plugin 'editorconfig/editorconfig-vim'
Bundle 'Lokaltog/powerline'
Bundle 'flazz/vim-colorschemes' Plugin 'pangloss/vim-javascript'
Bundle 'mileszs/ack.vim' Plugin 'scrooloose/syntastic.git'
Bundle 'airblade/vim-gitgutter'
Bundle 'editorconfig/editorconfig-vim' Plugin 'mileszs/ack.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
Plugin 'Lokaltog/powerline'
Plugin 'flazz/vim-colorschemes'
filetype plugin indent on " All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" enable 256 color !!1! " enable 256 color !!1!
set t_Co=256 set t_Co=256
@@ -229,6 +239,10 @@ nmap <C-Down> ]e
vmap <C-Up> [egv vmap <C-Up> [egv
vmap <C-Down> ]egv vmap <C-Down> ]egv
" yankstack
nmap <leader>p <Plug>yankstack_substitute_older_paste
nmap <leader>P <Plug>yankstack_substitute_newer_paste
" MAIL HUMAN TEX " MAIL HUMAN TEX
au BufNewFile,BufRead *.txt set filetype=human au BufNewFile,BufRead *.txt set filetype=human
au FileType human,mail,tex set expandtab textwidth=78 nocindent au FileType human,mail,tex set expandtab textwidth=78 nocindent