Added vundle bundles
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule "vim/vim.symlink/bundle/vundle"]
|
||||||
|
path = vim/vim.symlink/bundle/vundle
|
||||||
|
url = git@github.com:gmarik/vundle.git
|
||||||
|
|||||||
1
vim/vim.symlink/bundle/vundle
Submodule
1
vim/vim.symlink/bundle/vundle
Submodule
Submodule vim/vim.symlink/bundle/vundle added at 2a494ff00f
@@ -1,10 +1,38 @@
|
|||||||
" vim settings
|
" vim settings
|
||||||
|
|
||||||
" Pathogen
|
filetype off
|
||||||
" loads all plugins places in the ~/.vim/bundle directory
|
set rtp+=~/.vim/bundle/vundle/
|
||||||
runtime bundle/vim-pathogen/autoload/pathogen.vim
|
call vundle#rc()
|
||||||
let g:pathogen_disabled=[]
|
|
||||||
call pathogen#infect()
|
" let vundle manage vundle
|
||||||
|
Bundle 'gmarik/vundle'
|
||||||
|
|
||||||
|
" my vim plugins
|
||||||
|
Bundle 'kien/ctrlp.vim'
|
||||||
|
Bundle 'scrooloose/nerdtree'
|
||||||
|
Bundle 'mileszs/ack.vim'
|
||||||
|
Bundle 'scrooloose/syntastic'
|
||||||
|
Bundle 'Raimondi/delimitMate'
|
||||||
|
Bundle 'tpope/vim-commentary'
|
||||||
|
Bundle 'tpope/vim-endwise'
|
||||||
|
Bundle 'tpope/vim-fugitive'
|
||||||
|
Bundle 'othree/html5.vim'
|
||||||
|
Bundle 'pangloss/vim-javascript'
|
||||||
|
Bundle 'itspriddle/vim-jquery'
|
||||||
|
Bundle 'tpope/vim-markdown'
|
||||||
|
Bundle 'tsaleh/vim-matchit'
|
||||||
|
Bundle 'juvenn/mustache.vim'
|
||||||
|
Bundle 'mmalecki/vim-node.js'
|
||||||
|
Bundle 'Lokaltog/vim-powerline'
|
||||||
|
Bundle 'tpope/vim-ragtag'
|
||||||
|
Bundle 'tpope/vim-surround'
|
||||||
|
Bundle 'sjl/vitality.vim'
|
||||||
|
Bundle 'duff/vim-scratch'
|
||||||
|
Bundle 'cakebaker/scss-syntax.vim'
|
||||||
|
Bundle 'kchmck/vim-coffee-script'
|
||||||
|
|
||||||
|
filetype plugin indent on
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" => General
|
" => General
|
||||||
@@ -103,10 +131,10 @@ set showmatch " show matching braces
|
|||||||
set mat=2 " how many tenths of a second to blink
|
set mat=2 " how many tenths of a second to blink
|
||||||
|
|
||||||
" switch to line when editing and block when not
|
" switch to line when editing and block when not
|
||||||
let cursor_to_bar = "\<Esc>]50;CursorShape=1\x7"
|
" let cursor_to_bar = "\<Esc>]50;CursorShape=1\x7"
|
||||||
let cursor_to_block = "\<Esc>]50;CursorShape=0\x7"
|
" let cursor_to_block = "\<Esc>]50;CursorShape=0\x7"
|
||||||
let &t_SI = cursor_to_bar
|
" let &t_SI = cursor_to_bar
|
||||||
let &t_EI = cursor_to_block
|
" let &t_EI = cursor_to_block
|
||||||
|
|
||||||
" error bells
|
" error bells
|
||||||
set noerrorbells
|
set noerrorbells
|
||||||
|
|||||||
Reference in New Issue
Block a user