mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 06:27:21 +01:00
Update vundle for vim
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -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
6
.gitmodules
vendored
@@ -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
52
vimrc
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user