mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
c90ee83400
Patches are shown on github with a fixed width (no matter how wide the window is). When line numbers are high (we have some files with 5 digit line numbers), the diff does not fit, and horizontal scrolling must be used when viewing the patch. This is super annoying. Let's reduce the width a bit. I think 109 is still very wide, but at least the github issue should be alleviated.
21 lines
764 B
VimL
21 lines
764 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!
|
|
|
|
" Note that we set a line width of 109 for .c and XML files, but for everything
|
|
" else (such as journal catalog files, unit files, README files) we stick to a
|
|
" more conservative 79 characters.
|
|
|
|
" NOTE: If you update this file make sure to update .dir-locals.el and
|
|
" .editorconfig, too.
|
|
|
|
set tabstop=8
|
|
set shiftwidth=8
|
|
set expandtab
|
|
set makeprg=GCC_COLORS=\ make
|
|
set tw=79
|
|
au BufRead,BufNewFile *.xml set tw=109 shiftwidth=2 smarttab
|
|
au FileType c set tw=109
|