Basic Neovim config

I’ve put together a basic Neovim configuration that relies entirely on Neovim’s native features. This setup avoids third‑party plugins, making it lightweight, f

Read Article
NeoVim on Windows

NeoVim on Windows

Introduction In this tutorial we will go through the process of installing and setting up NeoVim on Windows. This is going to be simple and easy to follow. We w

Read Article

Hybrid line number in Neovim (Lua)

To enable hybrid line number, add the following line to your init.lua. vim.wo.number = true vim.wo.relativenumber = true Save this file by doing a :w or Shift +

Read Article

Install Neovim on Ubuntu

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, thi

Read Article

Kickstart Neovim on Linux

Kickstart.nvim is a starter configuration for Neovim that is small, single-file and well-documented. You can use it as a starting point to create your custom co

Read Article

Set color scheme in Neovim (Lua)

To set a color scheme in Neovim using Lua add the following line to the init.lua file vim.cmd [[colorscheme onedark]] In the example above, I use Onedark as the

Read Article