diff options
author | Teddy Wing | 2021-07-18 20:37:51 +0200 |
---|---|---|
committer | Teddy Wing | 2021-07-18 20:37:51 +0200 |
commit | 0e4365a2081ff83fd65f8c92109a82e360ffa54c (patch) | |
tree | 4deadf87e318a7f6b8f26efe36208ce9ccfc72d1 /ftplugin | |
parent | 240527158db0fb8da5ed434d4137aed8a4fbbfed (diff) | |
download | dotvim-0e4365a2081ff83fd65f8c92109a82e360ffa54c.tar.bz2 |
ftplugin/objc.vim: Switch to tab indentation in Objective-C
I've gone back and forth between tabs and 4-space indentation in
Objective-C. Currently working on a project that uses tab indentation so
sticking with that for now.
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/objc.vim | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ftplugin/objc.vim b/ftplugin/objc.vim index 8d7e976..576d469 100644 --- a/ftplugin/objc.vim +++ b/ftplugin/objc.vim @@ -1,10 +1,3 @@ -" Indentation -setlocal expandtab -setlocal tabstop=4 -setlocal softtabstop=4 -setlocal shiftwidth=4 - - " Comment string call tcomment#DefineType('objc', '// %s') |