Nano is really simple to use, but once you get a hang of vi it seems even simpler. You can always install nano before you do any real configuring through ports, or pkg_add.
Simple vi commands.
i Changes to insert mode, else you are in visual. You hit i, insert your text and then hit escape to exit insert mode to beep mode. It beeps when you do this
:w writes a file, must not be in insert mode
:q quits a file, must not be in insert mode
if you get a prompt that says read only then you must override it with :w! instead of :w
that's it, practice for 5 minutes and you'll get the hang of it. Keep using vi and you will be amazed at the wealth of simplicity and power that its commands contain, even though its not just scroll, type, ctl-X like nano
PM if you get stuck on any commands
