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

Upgrade Ubuntu from EOL to GA

If you have an unattended Ubuntu desktop or server running an old or non-long-term release, it’s time to upgrade to the current generally available release. Fol

Read Article

Install Blender using Winget

You can learn more about what Winget is over here. Install Blender using Winget Step 1. Open Command Prompt You can open the command prompt by pressing the Wind

Read Article
Install Spotify using Winget

Install Spotify using Winget

You can learn more about what Winget is over here. Install Spotify using Winget Step 1. Open Command Prompt You can open the command prompt by pressing the Wind

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