Register a SA Forums Account here!
JOINING THE SA FORUMS WILL REMOVE THIS BIG AD, THE ANNOYING UNDERLINED ADS, AND STUPID INTERSTITIAL ADS!!!

You can: log in, read the tech support FAQ, or request your lost password. This dumb message (and those ads) will appear on every screen until you register! Get rid of this crap by registering your own SA Forums Account and joining roughly 150,000 Goons, for the one-time price of $9.95! We charge money because it costs us money per month for bills, and since we don't believe in showing ads to our users, we try to make the money back through forum registrations.
 
  • Locked thread
mila kunis
Jun 10, 2011
Hey, I'm working on a rails app and thought I'd try out vim. Looking for a little help with getting it set up like an IDE. So far I've installed vim-rails, vim-ruby, Nerdtree and ctrlp. What plugins would you guys recommend for tab autocomplete, closing html tags, jumping to ends of blocks/methods/parentheses and search all files for text functionality?

Adbot
ADBOT LOVES YOU

mila kunis
Jun 10, 2011
Thanks!

mila kunis
Jun 10, 2011
I got most things working but rails.vim seems to be giving me trouble.

here's the .vimrc i'm using, it's a hodgepodge because I just copy pasted stuff from around here and there. could what's in here be messing it up?

code:
filetype off
execute pathogen#infect()
filetype plugin indent on
nmap <F8> :TagbarToggle<CR>
autocmd vimenter * NERDTree
set laststatus=2  
set t_Co=256  
set noshowmode
nmap <F8> :TagbarToggle<CR>
set autoindent
set shiftwidth=2
set nocompatible      
syntax on            
filetype on         
filetype indent on 
filetype plugin on

mila kunis
Jun 10, 2011
Thanks everyone.

Got a ctrlp question, it seems to not not show the file you currently have open. Is there a way to configure it so that it does?

  • Locked thread