blob: 32e94378ad868e1c740c786bf9a8f0f44d898892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
" Indentation
setlocal expandtab
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
" Don't preserve indentation on empty lines
inoremap <buffer> <CR> <CR>
nnoremap <buffer> o o
nnoremap <buffer> O O
" Comment string
call tcomment#DefineType('objc', '// %s')
" Swap .h and .m alternates
nnoremap <buffer> <C-^> :FSHere<CR>
|