summaryrefslogtreecommitdiff
path: root/vim/ftplugin/rust.vim
blob: 8bdfbe51c727c5c9d400c2e6fdf182625b38a041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
""
" Rust config
" TODO: Move to ftplugin
"
au FileType rust nmap <C-]> <Plug>(rust-def)
au FileType rust nmap g<C-]> <Plug>(rust-def-split)
au FileType rust nmap g<S-C-]> <Plug>(rust-def-vertical)
au FileType rust nmap K <Plug>(rust-doc)
au FileType rust compiler cargo
au FileType rust set formatprg=rustfmt
"