Created
June 21, 2012 03:57
-
-
Save abatkin/2963742 to your computer and use it in GitHub Desktop.
Home vimrc (on linux)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call pathogen#infect() | |
syntax enable | |
filetype plugin indent on | |
set nocompatible | |
"if filereadable("$VIMRUNTIME/mswin.vim") | |
:so $VIMRUNTIME/mswin.vim | |
"endif | |
:behave mswin | |
set background=dark | |
if has("gui_running") | |
set nu | |
set guifont=Liberation\ Mono\ for\ Powerline\ 9 | |
set guioptions-=T | |
set lines=50 | |
set columns=140 | |
let g:Powerline_symbols = 'fancy' | |
colorscheme abbott | |
else | |
let g:Powerline_symbols = 'compatible' | |
set t_Co=256 | |
colorscheme vividchalk | |
endif | |
set shiftwidth=2 | |
set tabstop=2 | |
set expandtab | |
set noautowrite | |
set hidden | |
set autoindent smartindent | |
set smarttab | |
set history=200 | |
set incsearch | |
set ignorecase | |
set hlsearch | |
set showmatch | |
set nobackup | |
set encoding=utf-8 | |
set laststatus=2 | |
set wildignore=*.swp,*.zip,.svn/*,*.class,*.jar | |
vmap <Tab> >gv | |
vmap <S-Tab> <gv | |
let g:buffergator_viewport_split_policy = "B" | |
let g:buffergator_autoexpand_on_split = 0 | |
let g:buffergator_split_size = 0 | |
let g:buffergator_sort_regime = "mru" | |
let g:ctrlp_mruf_case_sensitive = 0 | |
let g:ctrlp_mruf_last_entered = 1 | |
let g:ctrlp_dotfiles = 0 | |
let g:ctrlp_working_path_mode = 0 | |
let g:syntastic_perl_efm_program = 'perl /usr/share/vim/vimfiles/perl-support/scripts/efm_perl.pl -c' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment