" Dinko 'kreator' Korunic, (c) 2007 " colors/scheme "highlight Normal guibg=Black guifg=Gray "highlight Visual guifg=reverse guibg=reverse colorscheme default " syntax syntax on " filetypes filetype on filetype plugin on filetype indent on " additional colors let python_highlight_all=1 " general stuff set autoindent set autowrite set background=dark set backspace=2 set backupdir=~/tmp,~/ set confirm set dictionary=/usr/share/dict/words set errorformat=%f:%l:\ %m set expandtab set formatoptions=tcrqv set guifont=10x20 set history=200 set ignorecase set incsearch set joinspaces set keywordprg=man set laststatus=1 set makeprg=make\ #<.o set modeline set modelines=5 set more set nobackup set nocindent set nocompatible set nohlsearch set nofoldenable set ruler set secure set shiftwidth=4 set showcmd set showmatch set showmode set nosmartindent set suffixes=.bak,~,.swp,.o,.info,.aux,.log,.dvi,.bbl,.blg,.brf,.cb,.ind,.idx,.ilg,.inx,.out,.toc set tabstop=4 set textwidth=74 set title set titlestring=%t%(\ %M%)%(\ (%{expand(\"%:~:.:h\")})%)%(\ %a%) set ttybuiltin set ttyfast set viminfo='10,\"100,:20,%,n~/.viminfo set wrap set wrapmargin=1 " autocmd if has("autocmd") autocmd FileType python setlocal expandtab ts=4 omnifunc=pythoncomplete#Complete autocmd FileType c setlocal noexpandtab ts=4 omnifunc=ccomplete#Complete autocmd FileType cpp setlocal noexpandtab ts=4 omnifunc=ccomplete#Complete autocmd FileType python setlocal expandtab ts=4 omnifunc=pythoncomplete#Complete autocmd FileType perl setlocal expandtab ts=4 autocmd FileType javascript setlocal expandtab ts=4 omnifunc=javascriptcomplete#CompleteJS autocmd FileType php setlocal expandtab ts=4 omnifunc=phpcomplete#CompletePHP autocmd FileType xml setlocal expandtab ts=2 omnifunc=xmlcomplete#CompleteTags autocmd FileType html setlocal expandtab ts=2 omnifunc=htmlcomplete#CompleteTags autocmd FileType sgml setlocal expandtab ts=2 omnifunc=xmlcomplete#CompleteTags autocmd FileType css setlocal expandtab ts=2 omnifunc=csscomplete#CompleteCSS autocmd BufNewFile,BufRead SLRN* setf mail autocmd BufReadPost * if line("'\"") > 0|if line("'\"") <= line("$")|exe("norm '\"")|else|exe "norm $"|endif|endif endif " taglist let Tlist_Ctags_Cmd = "/usr/bin/ctags-exuberant" let Tlist_GainFocus_On_ToggleOpen = 1 let Tlist_Enable_Fold_Column = 0 let Tlist_Exit_OnlyWindow = 0 let Tlist_Inc_Winwidth = 0 nnoremap :TlistToggle