mirror of
https://github.com/fergalmoran/vimfiles.git
synced 2026-01-06 16:55:12 +00:00
65 lines
1.4 KiB
VimL
65 lines
1.4 KiB
VimL
set nocompatible " be iMproved
|
|
|
|
|
|
" *** End Vundle ***
|
|
filetype off " required!
|
|
|
|
set rtp+=~/.vim/bundle/vundle/
|
|
call vundle#rc()
|
|
|
|
|
|
syntax on
|
|
|
|
" let Vundle manage Vundle
|
|
" required!
|
|
Bundle 'gmarik/vundle'
|
|
Bundle 'scrooloose/nerdtree'
|
|
|
|
" My Bundles here:
|
|
"
|
|
" original repos on github
|
|
Bundle 'tpope/vim-fugitive'
|
|
Bundle 'Lokaltog/vim-easymotion'
|
|
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
|
|
Bundle 'tpope/vim-rails.git'
|
|
Bundle 'https://github.com/fholgado/minibufexpl.vim'
|
|
Bundle 'https://github.com/juvenn/mustache.vim'
|
|
" vim-scripts repos
|
|
Bundle 'L9'
|
|
Bundle 'FuzzyFinder'
|
|
" non github repos
|
|
Bundle 'git://git.wincent.com/command-t.git'
|
|
" ...
|
|
|
|
filetype plugin indent on " required!
|
|
"
|
|
" Brief help
|
|
" :BundleList - list configured bundles
|
|
" :BundleInstall(!) - install(update) bundles
|
|
" :BundleSearch(!) foo - search(or refresh cache first) for foo
|
|
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
|
|
"
|
|
" see :h vundle for more details or wiki for FAQ
|
|
" NOTE: comments after Bundle command are not allowed..
|
|
" *** End Vundle ***
|
|
|
|
" Setup 256 colors
|
|
if &term =~ "xterm"
|
|
"256 color --
|
|
let &t_Co=256
|
|
" restore screen after quitting
|
|
set t_ti=ESC7ESC[rESC[?47h t_te=ESC[?47lESC8
|
|
if has("terminfo")
|
|
let &t_Sf="\ESC[3%p1%dm"
|
|
let &t_Sb="\ESC[4%p1%dm"
|
|
else
|
|
let &t_Sf="\ESC[3%dm"
|
|
let &t_Sb="\ESC[4%dm"
|
|
endif
|
|
endif
|
|
|
|
|
|
set t_Co=256
|
|
colorscheme badwolf
|
|
filetype on
|