diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-04-26 15:06:28 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-04-29 12:23:34 +0200 |
commit | 1cc457d9985d494e59251fd41c84a2d555a91636 (patch) | |
tree | dd726442e36256b51855439acb86bcc098e17c88 /.vimrc | |
parent | e4196edfbf8edcee8771be5a71b69c95ea63d604 (diff) | |
download | systemd-1cc457d9985d494e59251fd41c84a2d555a91636.tar.gz systemd-1cc457d9985d494e59251fd41c84a2d555a91636.tar.bz2 systemd-1cc457d9985d494e59251fd41c84a2d555a91636.zip |
vimrc: fix indentation logic for our docbook xml files
Make sure TAB results in 2ch indenting as we commonly use for our docbook XML
files.
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,5 +16,5 @@ set shiftwidth=8 set expandtab set makeprg=GCC_COLORS=\ make set tw=79 -au FileType xml set tw=119 +au BufRead,BufNewFile *.xml set tw=119 shiftwidth=2 smarttab au FileType c set tw=119 |