Restarting vim config files using Pathogen. Added fugitive and delimitMate.
This commit is contained in:
parent
e9c52b31ba
commit
7cd035e82f
80 changed files with 259 additions and 2 deletions
23
vimrc
23
vimrc
|
|
@ -1,21 +1,40 @@
|
|||
" pathogen
|
||||
call pathogen#runtime_append_all_bundles()
|
||||
call pathogen#helptags()
|
||||
|
||||
" turn off vi compatability
|
||||
set nocompatible
|
||||
|
||||
" turn off swapfiles
|
||||
set noswapfile
|
||||
|
||||
" persistent undo (>7.3)
|
||||
set undodir=~/.vim/undodir
|
||||
set undofile
|
||||
|
||||
" filetype and plugin indentation
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
|
||||
" search
|
||||
set hlsearch
|
||||
set incsearch
|
||||
set showmatch
|
||||
|
||||
syntax enable
|
||||
|
||||
set autoindent
|
||||
set smartindent
|
||||
|
||||
" tabs
|
||||
set expandtab
|
||||
set smarttab
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
|
||||
set autoread
|
||||
set showmatch
|
||||
set mat=2
|
||||
set ruler
|
||||
set nohls
|
||||
set incsearch
|
||||
|
||||
au BufNewFile,BufRead *.less set filetype=less
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue