Files
dotfiles/.vimrc
2015-05-05 11:05:38 -04:00

39 lines
745 B
VimL

" Ensure that we are in modern vim mode, not backwards-compatible vi mode
set nocompatible
set backspace=indent,eol,start
" Helpful information: cursor position in bottom right, line numbers on left
set ruler
set number
" Enable filetype detection and syntax hilighting
syntax on
filetype on
filetype indent on
filetype plugin on
" Indent as intelligently as vim knows how
set smartindent
" Show multicharacter commands as they are being typed
set showcmd
set background=dark
set laststatus=2
set noshowmode
colorscheme distinguished
execute pathogen#infect()
" highlight long lines (over 80 char)
if exists('+colorcolumn')
set colorcolumn=80
else
endif
if exists('+mouse')
set mouse=a
else
endif
let g:airline_powerline_fonts=1