blob: 6f6b275ad7b6a3d38feda3e37e86651b3ce095a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
" Rust vim settings
" Indentation
setlocal expandtab
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
" Comment string
setlocal commentstring=//\ %s
" Add a trailing comma when expanding elements to multiple lines
let b:argwrap_tail_comma = 1
|