2011-12-23 18:50:18 +00:00
|
|
|
colors koehler
|
|
|
|
filetype plugin on
|
2011-12-23 20:41:47 +00:00
|
|
|
filetype plugin indent on
|
2011-12-23 18:50:18 +00:00
|
|
|
syntax on
|
2011-12-23 20:41:47 +00:00
|
|
|
let g:pydiction_location = '~/.vim/after/ftplugin/pydiction/complete-dict'
|
|
|
|
|
|
|
|
|
|
|
|
set bs=2
|
|
|
|
set nocompatible
|
|
|
|
set ts=2
|
|
|
|
set pastetoggle=<F2>
|
|
|
|
set number
|
|
|
|
set expandtab
|
|
|
|
set tabstop=4
|
|
|
|
set shiftwidth=4
|
|
|
|
set softtabstop=4
|
2012-06-21 20:35:57 +00:00
|
|
|
set textwidth=79
|
2011-12-23 20:41:47 +00:00
|
|
|
set autoindent
|
|
|
|
set mouse=a
|
2012-01-21 03:45:01 +00:00
|
|
|
set hls is
|
2012-05-29 00:34:59 +00:00
|
|
|
set encoding=utf-8
|
2012-07-08 17:20:44 +00:00
|
|
|
|
|
|
|
" Only do this part when compiled with support for autocommands
|
|
|
|
if has("autocmd")
|
|
|
|
" Enable file type detection
|
|
|
|
filetype on
|
|
|
|
|
|
|
|
" Syntax of these languages is fussy over tabs Vs spaces
|
|
|
|
autocmd FileType make setlocal ts=8 sts=8 sw=8 noexpandtab
|
|
|
|
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
|
|
|
|
|
|
|
|
" Customisations based on house-style (arbitrary)
|
|
|
|
autocmd FileType html setlocal ts=2 sts=2 sw=2 expandtab
|
|
|
|
autocmd FileType css setlocal ts=2 sts=2 sw=2 expandtab
|
|
|
|
autocmd FileType javascript setlocal ts=4 sts=4 sw=4 noexpandtab
|
|
|
|
|
|
|
|
" Treat .rss files as XML
|
|
|
|
autocmd BufNewFile,BufRead *.rss setfiletype xml
|
|
|
|
endif
|
|
|
|
|
|
|
|
autocmd FileType python set omnifunc=pythoncomplete#Complete
|
|
|
|
|
|
|
|
let g:miniBufExplMapWindowNavVim = 1
|
|
|
|
let g:miniBufExplMapWindowNavArrows = 1
|
|
|
|
let g:miniBufExplMapCTabSwitchBufs = 1
|
|
|
|
let g:miniBufExplModSelTarget = 1
|