Short answer: it depends. Certain kinds of work should almost always be done in a simple text editor (editing a settings file, for example). Certain kinds of larger projects, with complex revision control, certain kinds of gui work, large-scale work across folders and files, are often best managed with an IDE (but not always). Many IDE's also give you features like problem-detection as you type, which can speed development. Ultimately, though, it depends on what you're comfortable with.
With respect to text editors, this is one of the oldest debates in programming. The two most popular editors are vi (vim) and Emacs (GNU Emacs). vi has a steeper learning curve because of its unique modal interface (basically, there are two distinct modes of input/operation), but many programmers find they work faster in vi once they get they hang of it. Try both of the editors out for awhile, and see what you prefer. Also, experienced Emacs users are capable of using it as something very much like an IDE.
Another option is to try nano (it developed out of another editor, called 'pico'). nano (as its name implies) is simpler than both vi and Emacs, and so is best used for simple tasks. However, a good nano user can get some serious programming done in it, albeit less efficiently than with vi or Emacs.
In the end, though, the short answer remains the truth: it depends. Find what you're comfortable with, and go for it.