pathogen and vimrc

This commit is contained in:
2015-06-21 19:57:11 -06:00
commit fd735db2fc
2 changed files with 374 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
" load pathogen
execute pathogen#infect()
" disable vi compatibility
set nocompatible
" colorscheme
set background=dark
colorscheme pencil
" display line numbers
set nu
" toggle highlight line
nnoremap <silent> <F4> :set cursorline!<CR>
" enable syntax highlighting
syntax enable
" set up indenting
set tabstop=2
set shiftwidth=2
set expandtab
filetype plugin indent on
"
iabbrev <// </<C-X><C-O>