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 ArticleI’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 ArticleIntroduction 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 ArticleTo 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 ArticleThis 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 ArticleKickstart.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 ArticleTo 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