This article will cover how to install the latest builds of Neovim on Ubuntu. We will be using the unstable PPA repository since it gets updated more often, this means we get new features and bug fixes faster. If you need extreme stability in your environment, I recommend going with the stable Neovim PPA just […]
Category: Neovim
Posted inArticles, Neovim
Set color scheme in Neovim (Lua)
To set a color scheme in Neovim using Lua add the following line to the init.lua file In the example above, I use Onedark as the color scheme, but you can use whatever you like.
Posted inArticles, Neovim
Relative line number in Neovim (Lua)
To enable relative line number, add the following line to your init.lua. Save this file by doing a :w or Shift + z repeat z. The next time you open Neovim, you should see the relative line number enabled.