mirror of
https://github.com/fergalmoran/vimfiles.git
synced 2026-01-04 15:55:10 +00:00
Merge branch 'master' of github.com:fergalmoran/vimfiles
This commit is contained in:
18
.vimrc
18
.vimrc
@@ -23,6 +23,7 @@ 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'
|
||||
@@ -41,6 +42,23 @@ filetype plugin indent on " required!
|
||||
" 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
|
||||
|
||||
filetype on
|
||||
|
||||
Reference in New Issue
Block a user