Skip to content

Instantly share code, notes, and snippets.

@miknight
Created June 30, 2009 00:17
Show Gist options
  • Save miknight/137904 to your computer and use it in GitHub Desktop.
Save miknight/137904 to your computer and use it in GitHub Desktop.
~/.vimrc
set nocompatible
syn on
set linebreak
set hlsearch
set bg=dark
set sw=4
set ts=4
set bs=2
set si
set expandtab
set ruler
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [ASCII=\%03.3b]\ [HEX=\%02.2B]\ [POS=%04l,%04v][%p%%]\ [LEN=%L]
set laststatus=2
set incsearch
if has("autocmd")
" Drupal *.module and *.install files.
augroup module
autocmd BufRead,BufNewFile *.module set filetype=php
autocmd BufRead,BufNewFile *.install set filetype=php
augroup END
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment