My day job involves coding with Perl. At home I play around with Python and Erlang. For Perl I want to indent my code with two spaces. Where as for Python the standard is 4. Also I have some key bindings to open function declarations which I would like to use with all programming languages. How can this be achieved in GVIM? As in, is there a way to maintain a config file for each programming language or something of that sort?
|
|
You should be able to do with by leveraging filetypes ... e.g., add this to your vimrc (and modify appropriately for different languages):
|
||||||||||||
|
|
|
In your $HOME, make .vim/ directory (or vimfiles/ on Windows), in it make ftplugin/ directory, and in it keep files named "perl.vim" or "python.vim" or "html.vim" or ... These should be loaded automatically when you open/create new file of given filetype as long as you don't forget to add Then, vim options should be defined with Mappings are defined with
|
||||
|
|
|
In addition to rangerchris's answer, you might consider using modelines. Modelines tell the editor how to configure itself:
That modeline tells vi to use 4 character tabs and autoindents, to use spaces instead of tabs, and that it should insert a newline when the cursor gets to 76 characters. You can control how Vim reads modelines with two variables (most likely set in your .vimrc):
The Like any system that takes instructions from untrusted sources, modelines can be a security threat, so the The real benefit to modelines is that they are per file. Most Perl people are four spaces as indent people, but I am an eight character tab person. When working with other people's code, I use a modeline that reflects their usage. The rest of the time I use my own. |
||
|
|
|
|
Here's how I do it. The below is an excerpt from my
Note that although I source a file, I can execute any VIM command, or call a function. e.g. for loading a new Java file I do this:
where |
||
|
