let Tlist_Ctags_Cmd="/usr/local/ctags/bin/ctags" set nocompatible au BufRead,BufNewFile * set tabstop=4 au BufRead,BufNewFile * set expandtab " set showmatch " allow backspacing over everything in insert mode set backspace=indent,eol,start colo metacosm set nu set autoindent " always set autoindenting on "set smartindent "test this out set nobackup " do not keep a backup file, use versions instead set nowrap "set wm=10 "wrap the word before it hits the end of the margin... set history=150 " keep 150 lines of command line history set ruler " show the cursor position all the time set showcmd " display incomplete commands set incsearch " do incremental searching syntax on "let PHP_defauult_indenting = 0; "let PHP_removeCRwhenUnix=1; "let PHP_BracesAtCodeLevel=1; "let php_sql_query = 1 "let php_htmlInString = 1 "let php_folding = 2 "set foldcolumn=4 set hlsearch " let Tlist_Ctags_Cmd="/usr/local/bin/ctags" filetype plugin indent on autocmd FileType javascript setlocal cindent autocmd FileType text setlocal textwidth=0 filetype on let spell_executable="aspell" highlight SpellErrors ctermfg=Red guifg=Red \ cterm=underline gui=underline term=reverse " vimrc file for following the coding standards specified in PEP 7 & 8. " " To use this file, source it in your own personal .vimrc file (``source "``) or, if you don't have a .vimrc file, you can just symlink to it " (``ln -s ~/.vimrc``). All options are protected by autocmds " (read below for an explanation of the command) so blind sourcing of this file " is safe and will not affect your settings for non-Python or non-C files. " " " All setting are protected by 'au' ('autocmd') statements. Only files ending " in .py or .pyw will trigger the Python settings while files ending in *.c or " *.h will trigger the C settings. This make the file "safe" in terms of only " adjusting settings for Python and C files. " " Only basic settings needed to enforce the style guidelines are set. " Some suggested options are listed but commented out at the end of this file. " " Number of spaces to use for an indent. " This will affect Ctrl-T and 'autoindent'. " Python: 4 spaces " C: tab (8 spaces) au BufRead,BufNewFile *.py,*pyw set shiftwidth=4 au BufRead,BufNewFile * set shiftwidth=4 au BufRead,BufNewFile *.c,*.h set shiftwidth=4 " Number of spaces that a pre-existing tab is equal to. " For the amount of space used for a new tab use shiftwidth. " Python: 8 " C: 8 " au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=8 au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=4 " Replace tabs with the equivalent number of spaces. " Also have an autocmd for Makefiles since they require hard tabs. " Python: yes " C: no " Makefile: no "au BufRead,BufNewFile *.py,*.pyw set expandtab " I hate backspace over the above... As I can't backspace into a tab, " So I'm just going to turn that off... au BufRead,BufNewFile * set expandtab au BufRead,BufNewFile *.py,*.pyw set expandtab au BufRead,BufNewFile *.c,*.h set expandtab au BufRead,BufNewFile Makefile* set noexpandtab " Wrap text after a certain number of characters " Python: 79 " C: 79 au BufRead,BufNewFile *.py,*.pyw,*.c,*.h set wrap au BufRead,BufNewFile *.py,*.pyw,*.c,*.h set textwidth=79 " Turn off settings in 'formatoptions' relating to comment formatting. " - c : do not automatically insert the comment leader when wrapping based on " 'textwidth' " - o : do not insert the comment leader when using 'o' or 'O' from command mode " - r : do not insert the comment leader when hitting in insert mode " Python: not needed " C: prevents insertion of '*' at the beginning of every line in a comment au BufRead,BufNewFile *.c,*.h set formatoptions-=c formatoptions-=o formatoptions-=r " Use UNIX (\n) line endings. " Only used for new files so as to not force existing files to change their " line endings. " Python: yes " C: yes au BufNewFile *.py,*.pyw,*.c,*.h set fileformat=unix " ---------------------------------------------------------------------------- " The following section contains suggested settings. While in no way required " to meet coding standards, they are helpful. " Set the default file encoding to UTF-8: ``set encoding=utf-8`` " Put a marker at the beginning of the file to differentiate between UTF and " UCS encoding (WARNING: can trick shells into thinking a text file is actually " a binary file when executing the text file): ``set bomb`` " For full syntax highlighting: let python_highlight_all=1 let python_slow_sync=1 syntax on " Automatically indent: ``filetype indent on`` " filetype indent on " Folding based on indentation: ``set foldmethod=indent`` set foldcolumn=5 " " Make trailing whitespace explicit: highlight WhitespaceEOL ctermbg=red guibg=red match WhitespaceEOL /\s\+$/ " or "set list listchars=trail:- " set list listchars=tab:-- " set foldmethod=indent " Superpaste inoremap :set paste mui + mv'uV'v=:set nopaste " set cursorline " hi cursorline guibg=#01283a "hi CursorColumn guibg=#555555 " """""""""""""""""""""""""""""" " Snippets for Python, JavaScript and HTML """"""""""""""""""""""""""""""" "You can use to goto the next <++> - it is pretty smart ;) "Python autocmd BufNewFile,BufRead *.py inorea cfun =IMAP_PutTextWithMovement("def <++>(<++>):\n<++>\nreturn <++>") autocmd BufRead,BufNewFile *.py inorea cclass =IMAP_PutTextWithMovement("class <++>:\n<++>") autocmd BufRead,BufNewFile *.py inorea cfor =IMAP_PutTextWithMovement("for <++> in <++>:\n<++>") autocmd BufRead,BufNewFile *.py inorea cif =IMAP_PutTextWithMovement("if <++>:\n<++>") autocmd BufRead,BufNewFile *.py inorea cifelse =IMAP_PutTextWithMovement("if <++>:\n<++>\nelse:\n<++>") "JavaScript autocmd BufRead,BufNewFile *.tmpl,*.htm,*.js inorea cfun =IMAP_PutTextWithMovement("function <++>(<++>) {\n<++>;\nreturn <++>;\n}") autocmd BufRead,BufNewFile *.tmpl,*.htm,*.js inorea cfor =IMAP_PutTextWithMovement("for(<++>; <++>; <++>) {\n<++>;\n}") autocmd BufRead,BufNewFile *.tmpl,*.htm,*.js inorea cif =IMAP_PutTextWithMovement("if(<++>) {\n<++>;\n}") autocmd BufRead,BufNewFile *.tmpl,*.htm,*.js inorea cifelse =IMAP_PutTextWithMovement("if(<++>) {\n<++>;\n}\nelse {\n<++>;\n}") "HTML autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea cahref =IMAP_PutTextWithMovement('<++>') autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea cbold =IMAP_PutTextWithMovement('<++>') autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea cimg =IMAP_PutTextWithMovement('<¿mg src="<++>" alt="<++>" />') autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea cpara =IMAP_PutTextWithMovement(' <++>
')autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea ctag =IMAP_PutTextWithMovement('<<++>><++><++>>') autocmd BufRead,BufNewFile *.tmpl,*.js,*.htm inorea ctag1 =IMAP_PutTextWithMovement("<<++>> <++> <++>>") " Folding to work in c: au BufRead,BufNewFile *.c,*.h,*.rb set foldmethod=syntax au BufRead,BufNewFile *.html,*.htm set syntax=eruby