How do I set up different tab settings for different languages in Vim?

Vim

Vim Problem Overview


In my .vimrc I've got a generic tab setting of two spaces, and I'd like to override that on a per language basic (that is, four for Python, etc, otherwise use the default), but I'm having trouble finding any good example of this.

Vim Solutions


Solution 1 - Vim

These other answers seem way too complex. Instead of messing around with yet more directories and files in your ~/.vim tree, just add the following to your ~/.vimrc.

autocmd Filetype python setlocal expandtab tabstop=4 shiftwidth=4 softtabstop=4

(you can be l33t and abbreviate parameters to et ts=4 sw=4 sts=4). I found this in https://stackoverflow.com/questions/1562633/setting-vim-whitespace-preferences-by-filetype

Solution 2 - Vim

Just put the settings into the filetype plugin file ~/.vim/ftplugin/LANGUAGE.vim . My ~/.vim/ftplugin/perl.vim contains the lines:

"
" ---------- tabulator / shiftwidth --------------------
"  Set tabulator and shift width to 4 (Perl Style Guide)
"
setlocal  tabstop=4
setlocal  shiftwidth=4
"

These settings will automatically be in effect for each file with file type 'perl' (new or existing).

Solution 3 - Vim

My answer is based on this tip on the VIM Wiki. This answer uses the "after" directory so you won't have to muck with the supplied plugin files for different filetypes.

For example, to specify custom settings for Python files, create a file called python.vim to hold your Python settings:

setlocal expandtab
setlocal shiftwidth=4
setlocal softtabstop=4

Place this file in either

  • ~/.vim/after/ftplugin (Linux)
  • $HOME/vimfiles/after/ftplugin (Windows)

And finally, you must have this in your .vimrc (Linux) or _vimrc (Windows):

filetype plugin indent on

Solution 4 - Vim

Typically what you do is set up a special vimrc-type file with the settings for a particular language, and then use autocommands in your main .vimrc to execute the special vimrc when necessary. Here's my configuration for Haskell (.hs, etc.) files:

autocmd! BufNewFile,BufReadPre,FileReadPre  *.hs    so ~/.vim/haskell.vim
autocmd! BufNewFile,BufReadPre,FileReadPre  *.hsc   so ~/.vim/haskell.vim
autocmd! BufNewFile,BufReadPre,FileReadPre  *.lhs   so ~/.vim/haskell.vim
autocmd! BufNewFile,BufReadPre,FileReadPre  *.cabal so ~/.vim/haskell.vim

My ~/.vim/haskell.vim does stuff like "set expandtab" to use spaces instead of tabs, and all sorts of other magic for formatting and things like this. You can often download good versions of these for various languages from http://vim.org and other sites.

Note that you can do a lot more than just change vim settings. For example, you can run the file through a filter before and after editing:

" Edit gpg-encrypted ascii-armoured files
autocmd! BufReadPre,FileReadPre      *.asc  set bin
autocmd  BufReadPost,FileReadPost    *.asc  '[,']!gpg -q -d
autocmd  BufReadPost,FileReadPost    *.asc  set nobin
autocmd! BufWritePre,FileWritePre    *.asc  set bin
autocmd  BufWritePre,FileWritePre    *.asc  '[,']!gpg -e
autocmd  BufWritePost,FileWritePost  *.asc  undo
autocmd  BufWritePost,FileWritePost  *.asc  set nobin

Solution 5 - Vim

I use the editor config plugin and add a .editorconfig file to all my projects - it will let you define different indentation settings for different projects using the same programming language which can be useful as often different projects in the same language have different coding standards.

You can see an example of the types of configuration you can set here: http://editorconfig.org/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMagnus ÖsterlindView Question on Stackoverflow
Solution 1 - VimskierpageView Answer on Stackoverflow
Solution 2 - VimFritz G. MehnerView Answer on Stackoverflow
Solution 3 - VimBrian NealView Answer on Stackoverflow
Solution 4 - VimcjsView Answer on Stackoverflow
Solution 5 - VimBenView Answer on Stackoverflow