Updated files
This commit is contained in:
38
.vimrc
Normal file
38
.vimrc
Normal 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
|
||||
Reference in New Issue
Block a user