Neovim

Neovim is a modern implementation of the vi editor created by Bill Joy all the way back in 1976. It's a modal editor where insert mode and command mode are separated, and it's a bit of a superpower once you learn even just a subset of the incredibly deep key command set. But it's also quite the learning curve!

If you're totally new to vim-style editing, I recommend you checkout ThePrimeagen's Vim As Your Editor series on YouTube. That'll teach you the basics. Just know that unlike more similar mainstream editors, it's going to take you longer to get basic proficiency with vim. But once you do, the payoff is also larger.

Now Neovim is basically infinitely configurable. If you really want to go nuts, you can create your own Neovim configuration from scratch. There's a great course from Typecraft on setting up Neovim from scratch. And ThePrimegean has one as well.

But Omakub ships with a complete Neovim setup that's been lovingly tuned to showcase the best of what's possible out of the box. Without you having to write a single line of configuration! It's called LazyVim, and it's a distribution of Neovim plugins and configurations. It's awesome.

LazyVim Basics

As mentioned, I'm not going to teach you vim in this short introduction, but I can show you a few basics of LazyVim, and how to get around.

First, Neovim has the idea of the leader key. That's basically the gateway to all the commands. LazyVim has set that to Space. So just press that, wait a second, and you'll see a bunch of options explained inline like this:

Here are some basic commands I use all the time:

While you're in the file tree (Space E to reveal, Ctrl + W W to hop over there), you can add a new file with a or a new directory with A. Press ? while in the tree to see all commands.

You can see all the possible commands on the LazyVim Keymaps page.

Starting Neovim

You can start Neovim using the application shortcut in the dock, like you would any editor, but it's usually easier to drive it from the terminal by navigating to the directory you wish to work in and typing n .. The n is the alias for nvim and . is the present directory.