blob: 8d7e976da3f860cc241dc5f86cc72bbf39b8fec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
" Indentation
setlocal expandtab
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
" Comment string
call tcomment#DefineType('objc', '// %s')
" Swap .h and .m alternates
nnoremap <buffer> <C-^> :FSHere<CR>
|