3
votes
3answers
662 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 t …
54
votes
42answers
5k views
What is in your .vimrc?
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. …
0
votes
1answer
46 views
Auto-open NERDTree in vim
Good day.
Does someone know how to force .vimrc to auto-open NERDTree each time vim is invoked? The operation system is *nix. Thanks.
1
vote
0answers
38 views
Linux Ubuntu Vim - navigate to symlink/link directory? [closed]
Hey guys can you help me with some issues on how to navigate through links to the directory or file it points to through the command line?
If i try to 'cd' into them it says they …
0
votes
0answers
41 views
Filetype detection not working [closed]
My vimrc is up here, I am using the same vimrc on two seperate computers, both macs (MacVim). One detects the filetype correctly when launching a file from the terminal. The other …
1
vote
2answers
45 views
Limiting a match in vim to certain filetypes?
I have the following in my .vimrc to highlight lines longer than 80 chars:
highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.*/
This works qui …
4
votes
1answer
103 views
vim screen restore
Hi,
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
(lik …
4
votes
1answer
59 views
.vimrc action onclose
Hi,
is it possible to use something like an "vim-close/exit"-Event to execute some last commands before vim quits?
I use this lines in my config, to let vim set my screen-title:
…
2
votes
3answers
215 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 Bu …
2
votes
5answers
359 views
Vim customization — .vimrc — mapping of keys
Vim customization --
I have added these lines in my .vimrc
inoremap /* /**/< Left >
what i intend is, when in press open comments /* -- it should automically print t …
5
votes
4answers
326 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 …
1
vote
1answer
45 views
Mapping of <ctrl-#> characters
I've been trying to map certain sequences to parenthesis/bracket completion without any success. I've been trying the following commands to map certain control sequences but they …
2
votes
1answer
77 views
How can I create a folder, if it doesn’t exist, from .vimrc?
I don't like how vim clutters up my folders with backup files, so I have the following line in my .vimrc file:
set backupdir=~/.vim_backup
However, sometimes this folder doesn't …
1
vote
4answers
147 views
How do I use my .vimrc file in Cygwin?
I just installed Cygwin on my work machine and would like to use the .vimrc file I use on my Linux box at home.
Is that possible, or does it need to have Cygwin-specific settings …
1
vote
2answers
95 views
Automatically center vim search results
When I do a search with vim or gvim, the resulting positioning of the cursor within the window is somewhat random, all too frequently landing on the last (or first) line in the win …
