Q. I'm running FreBSD on an old PC and find that all the visual bells and whistles in FreeBSD X11 are really slowing things down. How do I install vim text editor under FreeBSD without using GUI (gvim) version? How do I build vim port without X11 GUI?
A. You can easily build VIM without X11 under FreeBSD. First, update your ports tree, using portsnap command, enter:
# portsnap fetch update
Install vim without X11, enter:
# cd /usr/ports/editors/vim
# make WITHOUT_X11=yes install clean
Optional: vim configuration
Copy /usr/local/share/vim/vimXY/vimrc_example.vim to /usr/local/share/vimrc, enter:
# cp /usr/local/share/vim/vim72/vimrc_example.vim /usr/local/share/vimrc
Create your ~/.vimrc file, enter:
$ vi ~/.vimrc
Add customization:
set nocompatible filetype on filetype indent on filetype plugin on set laststatus=2 syntax on
Save and close the file. Set bash alias, enter:
$ echo "alias vi='vim'" >> ~/.bashrc
Setup INPUTRC for bash, enter:
# echo 'export INPUTRC=/usr/local/etc/inputrc' >> /etc/profile
Finally, create /usr/local/etc/inputrc, enter:
# cat >> /usr/local/etc/inputrc
Append config:
set meta-flag on set input-meta on set convert-meta off set output-meta on "\e[1~": beginning-of-line "\e[4~": end-of-line "\e[5~": beginning-of-history "\e[6~": end-of-history "\e[3~": delete-char "\e[2~": quoted-insert "\e[5C": forward-word "\e[5D": backward-word
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 4 comments… read them below or add one }
Thank you
Alternate:
# echo 'WITH_VIM_OPTIONS=yes' >>/etc/make.conf
You can now choose vim options using the standard configuration dialog.
Is it possible to get firefox to run on Freebsd without X11, KDE or GNOME?
Noop, you cannot install Firefox without X11.