Skip to content

Instantly share code, notes, and snippets.

@camilo
Created October 29, 2010 16:23
Show Gist options
  • Select an option

  • Save camilo/653845 to your computer and use it in GitHub Desktop.

Select an option

Save camilo/653845 to your computer and use it in GitHub Desktop.
My .vimrc
colorscheme inkpot
set guifont=Inconsolata:h16.5
set guioptions=-M
syntax on
filetype plugin indent on
set tabstop=2
set smarttab
set shiftwidth=2
set autoindent
set expandtab
set number
set spell
au FileType php setl sw=4 sts=4 et
"For LaTex
set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
" disable arrow keys
map <up> <nop>
map <down> <nop>
map <left> <nop>
map <right> <nop>
imap <up> <nop>
imap <down> <nop>
imap <left> <nop>
imap <right> <nop>
" No huge lines
set textwidth=90
set nowrap
" Status line
set statusline="%{&fo}"
" Move obnoxious swp files to /tmp
set directory=/tmp
" Keep seeing the code underneath!
set scrolloff=10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment