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

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

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

Relative line number in Neovim (Lua)

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

Read Article

MacVim on OSX

MacVim is a text and source code editor for Mac that offers a GUI for Vim. It comes with extra features and supports Mac-based keyboard shortcuts, making it ver

Read Article

NeoVim on Fedora 21

NeoVim is an open source project to rebuild Vim but with better plugin support and more efficiency for more information over the project visit here Installing L

Read Article