Editors
vi and
vim are the same as in Linux. I used Slackware before (and I still do) and it's the same here. The difference is, most of the times under Linux, it's already preconfigured for you (depends on the distro). Here you have to do it yourself.
Luckily for you,
vim ships with a sample configuration file, which has all those nice things you're used to already. I dunno in which directory it is, but you can search for it:
Code:
# find / | grep vim | grep sample
At startup
vim for a configuration in two possible files:
/etc/vimrc and in
~/.vimrc. If the file doesn't exist, it uses the ugly defaults.
In order to use that sleek and sweet config you're probably used to, move that file to the
/etc folder. The filename is without the dot.
If you wanna have some user specific settings, you put them in the
~/.vimrc. Example of
~/.vimrc is this:
As for the long compilation time of the normal
vim ... It all depends on your config. If you addded support for some languages you're not sure you'll need, then you should probably uncheck that option.
Erratic
vi behavior is the same thing. The configuration is empty, and it's using the ugly default settings.