Acontece que eu não tinha o vim, apenas vi, devido a problemas de dependência após a atualização.
tl; dr; - versões antigas necessárias das dependências. Corrigido com:
$ sudo apt-get remove vim-common
$ sudo apt-get remove vim-runtime
$ sudo apt-get update && sudo apt-get install vim
Change .vimrc setting "set filetype off" => "filetype off"
Versão completa ...
A correção foi:
Tentativa de fazer:
apt-get install vim
Mas recebi a mensagem
...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
vim : Depends: vim-common (= 2:7.4.052-1ubuntu3) but 2:7.4.335-1~ppa1~s is to be installed
Depends: vim-runtime (= 2:7.4.052-1ubuntu3) but 2:7.4.335-1~ppa1~s is to be installed
E: Unable to correct problems, you have held broken packages.
$
Então eu tentei:
$ sudo apt-get install vim-common
Reading package lists... Done
Building dependency tree
Reading state information... Done
vim-common is already the newest version.
Finalmente, percebendo que as mensagens dizem que a dependência é 2:7.4.052
, mas eu tenho 2:7.4.335
para o vim-common e o vim-runtime, em outras palavras, eu tive mais versões recentes . Percebendo isso, a correção final foi:
$ sudo apt-get remove vim-common
...
$ sudo apt-get remove vim-runtime
Então eu consegui fazer;
$ sudo apt-get update && sudo apt-get install vim
Isso corrigiu todos os problemas, exceto por uma linha
set filetype off
que eu mudei para
filetype off