5 Micro Editor
Drew edited this page 2026-05-01 21:02:06 -04:00

Micro

Micro is a terminal text editor that sits between nano and vim. If you find nano too limited but vim too steep a learning curve, micro might be what you need.

My current nvim configuration can be found in my dotfiles on github.


Installation

sudo apt install micro

Plugins

Micro works well out of the box, but plugins add useful features:

micro -plugin install gotham-colors
micro -plugin install filemanager
micro -plugin install wc

Key features

Familiar keybindings: Ctrl-S to save, Ctrl-Q to quit. Works like most GUI editors.

Command line: Ctrl-E opens the command prompt with tab completion.

Mouse support: Can use mouse or disable it.

Simple to use: No modal editing to learn.


Common commands

Use Ctrl-E then type:

> set colorscheme gotham
> set softwrap on
> set autosave 120 (autosaves every 120 second)
> wc (for word counter)
> tree (for filemanager)
> vsplit ~/.bashrc (to open a second file)
> replaceall alt super (replaces all 'alt' with 'super')


Limitations

  • Plugin ecosystem is smaller than vim
  • Filemanager plugin needs work
  • No color preview plugin

Consider using lf or ranger for file navigation alongside micro.