Skip to content

Instantly share code, notes, and snippets.

@jponge
Last active October 8, 2015 05:48
Show Gist options
  • Save jponge/3286777 to your computer and use it in GitHub Desktop.
Save jponge/3286777 to your computer and use it in GitHub Desktop.
My current .vimrc for MacVIM
""" General
set nocompatible
set nobackup
""" Pathogen
filetype off
call pathogen#infect()
syntax on
filetype plugin indent on
""" Indenting
set autoindent
set softtabstop=2
set shiftwidth=2
set tabstop=2
set expandtab
set smarttab
""" Spelling
set spell
""" Menu
set wildmenu
set wildmode=list:longest,full
""" Editing visual aids
set number
set cursorline
set showmatch
set ruler
set nofoldenable
""" Search
set incsearch
set hlsearch
set ignorecase
set smartcase
""" Files
set autoread
set encoding=utf-8
set fileencodings=utf-8
set textwidth=100
""" GUI
set guifont=Source\ Code\ Pro:h14
set background=dark
colorscheme molokai
"colorscheme summerfruit
set guioptions=egmrt
""" Nerd tree plugin
nmap @ :NERDTree<Return>
""" Git wrap
au FileType gitcommit set tw=72
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment