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

Install Office using Winget

To install Microsoft Office on Windows 10/11 using Winget you first need to ensure that you have Winget installed on the PC. To do this run the following comman

Read Article
Install Firefox using Winget

Install Firefox using Winget

To install Mozilla Firefox using Winget, you first need to ensure that you have Winget installed on your Windows 10/11 PC. You can check if Winget is installed

Read Article

How to install Minikube on Rocky Linux

Minikube is a tool that makes it easy to run a single-node Kubernetes cluster locally on your computer. It allows developers to test and experiment with Kuberne

Read Article

How to install Docker on Rocky Linux

Docker is a platform for developers and system administrators to develop, ship, and run applications in containers. Containers are lightweight, portable, and se

Read Article