blob: ff7c4c6d967cb7a898bed49faa2165b3f96c45e6 [file] [log] [blame]
Brett Cannonb12efd32004-11-06 19:56:45 +00001" vimrc file for following the coding standards specified in PEP 7 & 8.
Brett Cannon8b4e8862004-09-19 05:43:13 +00002"
3" To use this file, source it in your own personal .vimrc file (``source
4" <filename>``) or, if you don't have a .vimrc file, you can just symlink to it
Brett Cannonb12efd32004-11-06 19:56:45 +00005" (``ln -s <this file> ~/.vimrc``). All options are protected by autocmds
6" (read below for an explanation of the command) so blind sourcing of this file
7" is safe and will not affect your settings for non-Python or non-C files.
8"
Brett Cannon8b4e8862004-09-19 05:43:13 +00009"
10" All setting are protected by 'au' ('autocmd') statements. Only files ending
11" in .py or .pyw will trigger the Python settings while files ending in *.c or
Brett Cannon07eca3a2005-03-05 05:52:21 +000012" *.h will trigger the C settings. This makes the file "safe" in terms of only
Brett Cannon8b4e8862004-09-19 05:43:13 +000013" adjusting settings for Python and C files.
14"
15" Only basic settings needed to enforce the style guidelines are set.
16" Some suggested options are listed but commented out at the end of this file.
Brett Cannon8b4e8862004-09-19 05:43:13 +000017
18
Brett Cannon8b4e8862004-09-19 05:43:13 +000019" Number of spaces to use for an indent.
20" This will affect Ctrl-T and 'autoindent'.
21" Python: 4 spaces
Brett Cannon4e472e02006-08-31 21:45:56 +000022" C: 4 spaces
Thomas Wouters477c8d52006-05-27 19:21:47 +000023au BufRead,BufNewFile *.py,*pyw set shiftwidth=4
24au BufRead,BufNewFile *.c,*.h set shiftwidth=4
Brett Cannon8b4e8862004-09-19 05:43:13 +000025
26" Number of spaces that a pre-existing tab is equal to.
Brett Cannonb12efd32004-11-06 19:56:45 +000027" For the amount of space used for a new tab use shiftwidth.
Brett Cannon8b4e8862004-09-19 05:43:13 +000028" Python: 8
29" C: 8
30au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=8
31
32" Replace tabs with the equivalent number of spaces.
33" Also have an autocmd for Makefiles since they require hard tabs.
34" Python: yes
Brett Cannon1b283c52006-04-24 20:01:24 +000035" C: yes
Brett Cannonb12efd32004-11-06 19:56:45 +000036" Makefile: no
Brett Cannon1b283c52006-04-24 20:01:24 +000037au BufRead,BufNewFile *.py,*.pyw,*.c,*.h set expandtab
Brett Cannon8b4e8862004-09-19 05:43:13 +000038au BufRead,BufNewFile Makefile* set noexpandtab
39
Brett Cannon07eca3a2005-03-05 05:52:21 +000040" Use the below highlight group when displaying bad whitespace is desired
41highlight BadWhitespace ctermbg=red guibg=red
42
43" Display tabs at the beginning of a line in Python mode as bad
Brett Cannon1b283c52006-04-24 20:01:24 +000044" Should be done for C code, but not until all code has been moved to 4-space
45" indents.
Brett Cannon07eca3a2005-03-05 05:52:21 +000046au BufRead,BufNewFile *.py,*.pyw match BadWhitespace /^\t\+/
47
Brett Cannon8b4e8862004-09-19 05:43:13 +000048" Wrap text after a certain number of characters
49" Python: 79
50" C: 79
51au BufRead,BufNewFile *.py,*.pyw,*.c,*.h set textwidth=79
52
53" Turn off settings in 'formatoptions' relating to comment formatting.
54" - c : do not automatically insert the comment leader when wrapping based on
55" 'textwidth'
56" - o : do not insert the comment leader when using 'o' or 'O' from command mode
57" - r : do not insert the comment leader when hitting <Enter> in insert mode
58" Python: not needed
59" C: prevents insertion of '*' at the beginning of every line in a comment
60au BufRead,BufNewFile *.c,*.h set formatoptions-=c formatoptions-=o formatoptions-=r
61
62" Use UNIX (\n) line endings.
63" Only used for new files so as to not force existing files to change their
64" line endings.
65" Python: yes
66" C: yes
67au BufNewFile *.py,*.pyw,*.c,*.h set fileformat=unix
68
69
Brett Cannonb12efd32004-11-06 19:56:45 +000070" ----------------------------------------------------------------------------
Brett Cannon8b4e8862004-09-19 05:43:13 +000071" The following section contains suggested settings. While in no way required
72" to meet coding standards, they are helpful.
73
74" Set the default file encoding to UTF-8: ``set encoding=utf-8``
75
Brett Cannon07eca3a2005-03-05 05:52:21 +000076" Puts a marker at the beginning of the file to differentiate between UTF and
Brett Cannonb12efd32004-11-06 19:56:45 +000077" UCS encoding (WARNING: can trick shells into thinking a text file is actually
78" a binary file when executing the text file): ``set bomb``
Brett Cannon8b4e8862004-09-19 05:43:13 +000079
80" For full syntax highlighting:
81"``let python_highlight_all=1``
82"``syntax on``
83
Brett Cannone6c430d2005-03-21 20:41:51 +000084" Automatically indent based on file type: ``filetype indent on``
85" Keep indentation level from previous line: ``set autoindent``
Brett Cannon8b4e8862004-09-19 05:43:13 +000086
Brett Cannonb12efd32004-11-06 19:56:45 +000087" Folding based on indentation: ``set foldmethod=indent``
Brett Cannon24a00452004-09-20 22:33:21 +000088
Brett Cannon07eca3a2005-03-05 05:52:21 +000089" Make trailing whitespace explicit (left off since this will automatically
90" insert the highlight or characters *as you type*, which can get annoying):
91"``match BadWhitespace /\s\+$/``
92"
93" or, for a non-colored, character-based solution:
94"
95"``set list listchars=trail:-``
Brett Cannon24a00452004-09-20 22:33:21 +000096