Tagged Questions
.vimrc is the primary configuration file for the VIM text editor
157
votes
72answers
60k views
What is in your .vimrc? [closed]
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.
What other tricks ...
70
votes
3answers
2k views
Can vim highlight matching HTML tags like Notepad++?
VIM has support for matching pairs of curly brackets, parentheses, and square brackets. This is great for editing C-style languages like PHP and Javascript. But what about matching HTML tags?
...
19
votes
7answers
7k views
VIM Disable Automatic Newline At End Of File
So I work in a PHP shop, and we all use different editors, and we all have to work on windows. I use vim, and everyone in the shop keeps complaining that whenever I edit a file there is a newline at ...
18
votes
6answers
3k views
How to share one vimrc file among multiple clients?
I am not a very orderly person at times and I often find myself in the situation of loosing my old fully tweaked vimrc file and having to start over all again. Or having different versions of vimrc ...
17
votes
4answers
9k views
how to prevent vim from creating (and leaving) temporary files?
Why does vim create <filename>~ files? Is there a way to disable that?
If it's for backup (or something), thanks but no thanks, I use git so I don't need your silly backup.
Also, these ...
15
votes
4answers
7k views
set gvim font in .vimrc file
I am using the gVim7.2 on Windows 7.I can set the gui font as Consolas 10(font size) from menu . I am trying to set this in .vimrc file like below
set guifont=Consolas\ 10
But it deosn't work. Does ...
14
votes
1answer
815 views
Creating a mapping for insert mode, but not for autocomplete submode
I have these insert mode mappings in my vimrc:
imap <C-e> <C-o>A
imap <C-a> <C-o>I
They make ctrl-a and ctrl-e move the cursor to the start and end of the line without ...
13
votes
8answers
2k views
A more useful statusline in vim?
I would like to make my statusline in vim more informative and interesting and for that I need some ideas. How did you costumize your statusline?
13
votes
2answers
1k views
Vim: Highlight keyword pairs in Ruby (def/end, do/end, etc)
In one of the Eclipse-based editors that I tried out recently (I think it was RubyMine), when a Ruby keyword that either opened or closed a method or block was selected, the corresponding open/close ...
13
votes
4answers
7k views
How do I “source” something in my .vimrc file?
I've been working on expanding my vim-foo lately and I've run across a couple of plugins (autotag.vim for example) that require them to be "sourced" in my .vimrc file. What exactly does this mean and ...
12
votes
5answers
2k views
Automatically quit vim if NERDTree is last and only buffer
I have the following in my .vimrc:
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Open NERDTree by default
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
autocmd ...
11
votes
1answer
337 views
leave vim split window in insert mode
I want to view the output of a bash command in a vim split window :split. To this end I installed "Conque Shell" which displays bash in a split window upon :ConqueTermSplit bash. I can then run my ...
11
votes
4answers
978 views
Temporarily disable some plugins using pathogen in vim.
I think I have a bug in one plugin. I would like to load only this plugin, without having to delete all the other bundles in my pathogen's bundle folder, to debug.
Is it possible?
11
votes
1answer
600 views
Vim: Use shorter textwidth in comments and docstrings
From the mighty PEP 8:
[P]lease limit all lines to a maximum of 79 characters. For flowing long blocks of text (docstrings or comments), limiting the length to 72 characters is recommended.
...
11
votes
2answers
2k views
Load different colorscheme when using vimdiff
How do i load a different colorscheme when i do a vimdiff.
I want this because the my current colorscheme does not show some diffs properly in vimdiff like the same fg/bg color for the text. This ...
11
votes
7answers
3k views
Writing a vim function to insert a block of static text
I'd like to be able to do something like this in vim (you can assume v7+ if it helps).
Type in a command like this (or something close)
:inshtml
and have vim dump the following into the current ...
11
votes
3answers
2k views
How to detect vi (not vim) in .vimrc?
I carry a vimrc to all the machines that I work on and it naturally contains options that are not present in old vi.
If I accidentally start a vi session on a machine where vi is not an alias to vim ...
10
votes
1answer
158 views
VIM Code completion anywhere in the string
By default code completion in VIM searches from the start of the word. Is it possible to make it anywhere in the word. For example, if I have "MY_DEVICE_CTRL_ADR" and "MY_DEVICE_STAT_ADR" in the C ...
10
votes
2answers
160 views
Vim: Set Color/Theme based off time of day
I have one of those super glossy monitors, so during the day I can see my own reflection better than my code on Dark themes. So I thought it'd be great if I could have a simple if switch in my vimrc ...
10
votes
2answers
707 views
Pros and cons for each vimrc cross-platform solution?
When dealing with .vimrc configuration files in Linux and Windows (two systems I've been using so far) and trying to keep configurations cross-platform, I've found mainly two solutions:
Create a new ...
10
votes
5answers
542 views
What components make VIM a good (great) ruby editor?
I'm learning ruby on rails on a linux box and dusting off my VIM skills (skillz?).
When I got started on VIM way back in my c++ days, I had a friend with a great vimfiles folder that had tons of ...
10
votes
6answers
894 views
Multiple vim configurations?
All,
I work in several groups, each of which has its own tab/indentation/spacing standards in C. I'm wondering if there's a way to have separate selectable vim configurations for each? So when I edit ...
9
votes
4answers
629 views
Is it possible to apply vim configurations without restarting?
I want to edit .vimrc file from Vim and apply them without restarting Vim.
Is that possible?
Thank you.
9
votes
3answers
2k views
How do I use variables in my .vimrc?
I have a small problem with "tab size" and different project,
some like 2 or 4 and the Linux kernel like 8 spaces per tab.
And this is not a big problem since I can just change a couple of settings ...
9
votes
3answers
330 views
Same _vimrc, two different computers
I have one folder synced between two computers (using one of online sync tools). I have gVim installed in this folder and I am wondering, is there a way, that I can distinguish those two computers in ...
9
votes
3answers
2k views
How to easily test for guifont in vimrc?
I have many different machines that I am logging into and none of them have decent fonts in common. So, I would like to be able to have my first preferance for a font but if it does not exist on the ...
9
votes
7answers
4k views
What setting in vim counteracts smartindent's refusal to indent # comments in shell scripts?
I recently started using vim 7 (previously vim 6) and the smartindent setting. For the most part, it works well, though I'm so used to typing a tab after an open brace that it is almost ...
8
votes
4answers
663 views
VIM syntax highlighting of html nested in yaml
Given a yaml file that contains html, like this:
template : |+
<div>Hello, world</div>
Is it possible in Vim (version 7.3.087) to highlight the html portion with html syntax ...
8
votes
5answers
2k views
Programmer's VIM setup for Finnish/Swedish or other non-US keyboard layout
I've been recently learning some VIM hackery and I have learned a lot of useful commands and gotten pretty efficient at editing text with VIM. I'm using the Finnish qwerty keyboard layout (see image ...
8
votes
2answers
1k views
Embed vim settings in file
In some files I can see a commented line, usually the last, with vim settings. Does vim read these settings? If it does, are any limitations of what kind of settings man can put there?
8
votes
1answer
331 views
In vim, is there a way to set “very magic” permanently and globally?
I use "very magic" for regexp searches (i.e. /\v or %s/\v) but I wish I could set some option so I don't have to include \v anymore, anywhere. Is there a way to do this?
8
votes
6answers
6k views
Mac OS X vim colors mangled
Here's my setup
Mac OS X 10.6
VIM (default version that comes with OSX 10.6)
rails.vim (installed in .vim/autoload)
ir_black.vim (installed in .vim/colors)
i have "colorscheme ir_black" and "syn on" ...
8
votes
1answer
2k views
Best way to organize filetype settings in .vim and .vimrc?
I'm going through my vim dotfiles to tidy them up. I've noticed that through time I've added various filetype specific settings in various inconsistent ways. Let's suppose I'm customizing for Python:
...
8
votes
2answers
2k views
Auto-open NERDTree in vim
Does someone know how to force .vimrc to auto-open NERDTree each time vim is invoked? The operation system is *nix.
8
votes
1answer
571 views
vim screen restore
i use vim in screen for development and if i quit vim, the current screen-content stays there...
outside the screen (xterm), exiting vim will restore the previous buffer
(like:
[ server1 ]~$ cmd
...
8
votes
1answer
1k views
Vim cursor shape question
I currently use MacVim for a lot of my editor needs but occasionally I need to edit files remotely over ssh. In MacVim the shape of the cursor varies depending on your current mode, i.e. command mode ...
8
votes
2answers
4k views
assembly vim syntax highlighting
The default assembly syntax file didn't works well,and after a searching on the web about gas assembly,found nothing about gas(AT&T syntax) syntax file for vim.. anyone found this??? I can't write ...
8
votes
4answers
2k views
In vim, how do I get a file to open at the same line number I closed it at last time?
I want to configure vim to open a file at the same place I left off at.
7
votes
1answer
649 views
In a .vimrc, is `set nocompatible` completely useless?
Several users in this epic question put the following in the .vimrc:
" Necesary for lots of cool vim things
set nocompatible
But is it really necessary? From the docs:
'compatible' 'cp'
...
7
votes
4answers
2k views
Why some people use 'if has(“gui_running”)' in a .gvimrc?
I've been reading some dotfiles (.vimrc .gvimrc) to learn some neat tricks, and I've come across this one:
if has("gui_running")
set fuoptions=maxvert,maxhorz
au GUIEnter * set fullscreen
...
7
votes
2answers
376 views
How to disable vim's indentation of switch case?
I'm currently fighting with Vim, I can't seem to make the indentation options do what I want.
Here are my settings, I put them at the bottom of .vimrc to make sure they take precedence. As you can ...
6
votes
2answers
361 views
Vim auto complete
So I know you can get Vim autocompletion with Ctrl-X, Ctrl-O but I'm wondering if you could rework it so it works with just pressing Tab (more like Textmate's snippets), or even just how I could remap ...
6
votes
1answer
276 views
How to make the vim Latex Suite recognize an “unknown package” error?
I'm using the Vim Latex Suite, and I love it. But there are some points in which it doesn't do what I want.
From the .vim/compiler/tex.vim file:
" Depending on the 'ignore-level', the following ...
6
votes
1answer
173 views
Is it possible to toggle a vim option when switching to insert mode?
I recently discovered the spell option thanks to this answer on Code Review, and I feel that the option is both really useful (while editing) and really annoying (while reading code, because of all ...
6
votes
2answers
919 views
How can I make Vim autosave files when it loses focus?
I'm used to my editors autosaving files when they lose focus. I recently switched to MacVim, and I can't recreate that behavior. I tried this:
autocmd BufLeave,FocusLost * wall
but if a buffer is ...
6
votes
3answers
943 views
Adding a command to Vim
I finally decided to try out Vim, as I am getting increasingly frustrated by GUI editors. So far, I'm loving it, but I can't find any help for a issue I'm having...
I am trying to map the command ...
6
votes
3answers
5k views
.vimrc configuration for Python
My current .vimrc configuration is below:
set nohlsearch
set ai
set bg=dark
set showmatch
highlight SpecialKey ctermfg=DarkGray
set listchars=tab:>-,trail:~
set list
autocmd BufRead *.py set ...
6
votes
2answers
814 views
“Minimizing” vertical VIM window splits
I use horizontal and vertical window splits in religiously in VIM and up until recently, I enjoyed the comfort of two commands to effectively hide (or minimize) my horizontal splits. I set them up ...
5
votes
2answers
64 views
vim recognize as javascript
I'd like to make any file which begins with #!/usr/bin/env node be recognized as JavaScript.
I know Vim does this with other languages, like BASH, so there must be a way of doing it.
Thank you!
5
votes
2answers
88 views
Vim Scripting - call function once for all selected lines
So I have a text file like this:
Item a: <total>
Subitem: 10 min
Subitem 2: 20 min
I'd like to replace <total> with the total of 10 and 20. Right now I'm doing it with the following ...