aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-07-18 20:37:51 +0200
committerTeddy Wing2021-07-18 20:37:51 +0200
commit0e4365a2081ff83fd65f8c92109a82e360ffa54c (patch)
tree4deadf87e318a7f6b8f26efe36208ce9ccfc72d1
parent240527158db0fb8da5ed434d4137aed8a4fbbfed (diff)
downloaddotvim-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.
-rw-r--r--ftplugin/objc.vim7
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')