Updated files

This commit is contained in:
2015-05-05 11:05:38 -04:00
parent a957537ab5
commit 67c43ca961
22 changed files with 3513 additions and 244 deletions

38
.vimrc Normal file
View File

@@ -0,0 +1,38 @@
" 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