commit 4b62f25ca7abcac435802a3a9bd860f19b70ef5f
parent 723b98bbc69c9636edb1ce497f81318d641b96bb
Author: Sebastian <sebastian@sebsite.pw>
Date: Sun, 20 Feb 2022 18:41:33 -0500
Add consistent modeline across files
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/compiler/hare.vim b/compiler/hare.vim
@@ -26,3 +26,4 @@ CompilerSet errorformat=
let &cpo = s:cpo_save
unlet s:cpo_save
+" vim: tabstop=2 shiftwidth=2 expandtab
diff --git a/ftplugin/hare.vim b/ftplugin/hare.vim
@@ -4,7 +4,7 @@
" Only do this when not done yet for this buffer
if exists('b:did_ftplugin')
- finish
+ finish
endif
" Don't load another plugin for this buffer
@@ -22,3 +22,4 @@ setlocal commentstring=//\ %s
setlocal fo-=t fo+=croql
compiler hare
+" vim: tabstop=2 shiftwidth=2 expandtab
diff --git a/syntax/hare.vim b/syntax/hare.vim
@@ -73,4 +73,4 @@ hi def link hareString String
hi def link hareTodo Todo
hi def link hareType Type
hi def link hareSpaceError Error
-" vim: tabstop=8
+" vim: tabstop=8 shiftwidth=2 expandtab