From 627a62f39d91506a82b63fd1c094aed323c7d894 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 30 Oct 2017 14:54:55 +1300 Subject: Add some more file-specific indent preferences For some languages in which I write often: C, HTML, Perl, PHP, and shell scripts. All of these values presently match the defaults specified in config/indent.vim, but for languages I commonly use it's probably appropriate to have files to set the indent settings explicitly anyway, especially if we switched from a filetype with different values. --- vim/ftplugin/sh.vim | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'vim/ftplugin/sh.vim') diff --git a/vim/ftplugin/sh.vim b/vim/ftplugin/sh.vim index 2b73611e..25e433e7 100644 --- a/vim/ftplugin/sh.vim +++ b/vim/ftplugin/sh.vim @@ -1,3 +1,10 @@ +" Explicitly set indent level; this matches the global default, but it's tidy +" to enforce it in case we changed from a filetype with different value (e.g. +" VimL) +setlocal shiftwidth=4 +setlocal softtabstop=4 +setlocal tabstop=4 + " Default to POSIX shell, as I never write Bourne, and if I write Bash or Ksh " it'll be denoted with either a shebang or an appropriate extension. At the " time of writing, changing this also prompts sh.vim to set g:is_kornshell, -- cgit v1.2.3