How to install vim.full in Ubuntu?

20

5

I've installed Ubuntu Server but I have only vim.basic?

How do i install vim.full?

Tried with aptitude install vim but it said it's always installed.

Because vim is a soft link to vim.basic.

ajsie

Posted 2010-04-04T12:03:16.950

Reputation: 1 675

Answers

29

Try the vim-nox package if you do not need a GUI, else try vim-gnome or vim-gtk. There are a number of vim packages compiled with different feature-sets:

% apt-cache search vim | grep vim-
jvim-canna - Japanized VIM (Canna version)
jvim-doc - Documentation for jvim (Japanized VIM)
vim-addon-manager - manager of addons for the Vim editor
vim-gtk - Vi IMproved - enhanced vi editor - with GTK2 GUI
vim-latexsuite - view, edit and compile LaTeX documents from within Vim
vim-nox - Vi IMproved - enhanced vi editor
vim-scripts - plugins for vim, adding bells and whistles
vim-syntax-gtk - Syntax files to highlight GTK+ keywords in vim
vim-vimoutliner - script for building an outline editor on top of Vim
vim-common - Vi IMproved - Common files
vim-dbg - Vi IMproved - enhanced vi editor (debugging symbols)
vim-doc - Vi IMproved - HTML documentation
vim-gnome - Vi IMproved - enhanced vi editor - with GNOME2 GUI
vim-gui-common - Vi IMproved - Common GUI files
vim-runtime - Vi IMproved - Runtime files
vim-tiny - Vi IMproved - enhanced vi editor - compact version
vim-rails - plugins for vim to allow easier editing of Rails Applications

user4358

Posted 2010-04-04T12:03:16.950

Reputation:

Afterwards You may need to change the link from /usr/bin/vim.tiny to /usr/bin/vim.full

Use whereis vim to get more information – user119591 – 2014-11-19T18:09:52.553

8You can use apt-cache search -n vim to search only package names instead of piping the output into grep – Sam – 2010-09-30T20:59:38.100

As was noted by @Johan (but to make it more obvious) on some older versions of Ubuntu there was a package called vim-full which could be installed. – Kaleb Pederson – 2010-10-28T16:22:45.127

9

This is what I usually install:

sudo apt-get install vim vim-scripts vim-doc vim-latexsuite vim-gui-common vim-gnome

In the past, there used to be a package called "vim-full"...

Johan

Posted 2010-04-04T12:03:16.950

Reputation: 4 827

1

Run these commands in a terminal:

sudo apt-get build-dep gnome-vim
sudo apt-get install gnome-vim

ivanceras

Posted 2010-04-04T12:03:16.950

Reputation: 111