Balisong ... I've not used vim-addon-manager, but it sounds as though (wild guess) you may be trying to use it to install global plugins which your user doesn't have permissions to do. If you simply want to install/manage plugins for your user then use something like pathogen or vundle.Balisong wrote:I'm trying to use Vim for programming, specifically for c++ but with no luck. I want to install vim-addon-manager so i can install some plugins to use vim as an IDE. If anyone has done this or can point me in the right direction please. Google didn't solve my problem

Code: Select all
[I] app-vim/c-support
Available versions: 6.0 6.1
Installed versions: 6.1(10:11:27 24.06.2014)
Homepage: http://www.vim.org/scripts/script.php?script_id=213
Description: vim plugin: C/C++-IDE -- Write and run programs using menus and hotkeysBalisong ... you would do the following:Balisong wrote:On the question about the vim.wikia site which recommends multiple plugins i didn't quite got the pathogen part, which now i'm trying to figure out how to use it for the plugins.
Code: Select all
# mkdir -p ~/.vim/bundle/pathogen/autoload/
# wget -O ~/.vim/bundle/pathogen/autoload/pathogen.vim http://tpo.pe/pathogen.vimCode: Select all
" Use pathogen to manage plugins
runtime bundle/vim-pathogen/autoload/pathogen.vim
call pathogen#infect()franzf ... you're probably correct, but its a little more complex to configure (at least in comparison to pathogen). Also, I'm personally not that keen on the idea of auto-updating ...franzf wrote:I would recommend vundle over pathogen, as it handles downloading and updating automatically - no need to copy anything manually into your ~/.vim.
Hey khay, cheers for sharing the link WRT VIM & IDE extensions! I'm going to try the VIM plugins for MS VS2010.khayyam wrote:Balisong ... I've not used vim-addon-manager, but it sounds as though (wild guess) you may be trying to use it to install global plugins which your user doesn't have permissions to do. If you simply want to install/manage plugins for your user then use something like pathogen or vundle.Balisong wrote:I'm trying to use Vim for programming, specifically for c++ but with no luck. I want to install vim-addon-manager so i can install some plugins to use vim as an IDE. If anyone has done this or can point me in the right direction please. Google didn't solve my problem
As for vim as IDE, have you read this?
best ... khay
sk3l ... you're welcome. That link doesn't mention it but there is also visual_studio.vim (which supports 2010). Some of the suggestions here may also be of interest (it mainly covers configuring visual_studio.vim).sk3l wrote:Hey khay, cheers for sharing the link WRT VIM & IDE extensions! I'm going to try the VIM plugins for MS VS2010.