blob: 04b82adb9f336ddc12769404f2340802a1c3d4ba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
execute pathogen#infect()
syntax on
filetype plugin indent on
set cursorline
set number
set hlsearch
set list
set exrc
augroup filetypedetect
au BufNewFile, BufRead .tmux.conf*,tmux.conf* setf tmux
augroup END
au FileType haskell setlocal expandtab
|