mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
e84750c905
Let's be a bit more precise with the editor configuration and specify a higher fill column of 119. This isn't as emacs' default of 70, but also not particularly high on today's screens. While we are at it, also set a couple of other emacs C coding style variables.
11 lines
389 B
VimL
11 lines
389 B
VimL
" 'set exrc' in ~/.vimrc will read .vimrc from the current directory
|
|
" Warning: Enabling exrc is dangerous! You can do nearly everything from a
|
|
" vimrc configuration file, including write operations and shell execution.
|
|
" You should consider setting 'set secure' as well, which is highly
|
|
" recommended!
|
|
set tabstop=8
|
|
set shiftwidth=8
|
|
set expandtab
|
|
set makeprg=GCC_COLORS=\ make
|
|
set tw=119
|