Could someone explain to me simply the easiest way to change the indentation behavior of vim based on the file type? For instance if I open a python file it would indent with 2 spaces, but if I open powershell it would use 4 spaces.
|
You can add For example, I have a file
Which causes vim to use tabs with a width of 2 characters for indenting (the This is described here: http://vimdoc.sourceforge.net/htmldoc/usr_05.html#05.4, scroll down to the section on filetype plugins. |
|||||||||||
|
|
Use ftplugins or autocommands to set options. (:h ftplugin for more information) In ~/.vim/ftplugin/python.vim:
And don't forget to turn them on in ~/.vimrc
Or in ~/.vimrc
I would also suggest learning the difference between 'ts' and 'sts'. A lot of people don't know about 'sts'. |
||||
|
|
|
Put autocmd commands based on the file suffix in your ~/.vimrc
The commands you're looking for are probably ts= and sw= |
|||||||||
|
|
I usually work with
to the end of my .vimrc file and it recognizes Makefile, makefile, and *.mk as makefiles and does not expand tabs. Presumably, you can extend this. |
|||||||||
|
|
While you can configure Vim's indentation just fine using the indent plugin or manually using the settings, I recommend using a python script called Vindect that automatically sets the relevant settings for you when you open a python file. Use this tip to make using Vindect even more effective. When I first started editing python files created by others with various indentation styles (tab vs space and number of spaces), it was incredibly frustrating. But Vindect along with this indent file Also recommend: |
|||
|
|
|
I'm always amazed by people who change the size of tabs for different filetypes. What on earth do you do when you look at a file using less? Personally, I use these settings in .vimrc:
|
|||||
|
|
This might be known by most of us, but anyway (I was puzzled my first time):
Doing
and the tabs in the file are replaced by enough spaces. To have tabs back simply do:
|
||||
|
|