You can learn more about what Winget is over here. Install Spotify using Winget Step 1. Open Command PromptYou can open the command prompt by pressing the Windows key + R and then typing in that window cmd.exe and press enter. Step 2. Run the install command shown below and press enter The command above will download the […]
Tag: tutorials
Set color scheme in Neovim (Lua)
To set a color scheme in Neovim using Lua add the following line to the init.lua file In the example above, I am using onedark as the color scheme. You can change this to whatever you want to use.
Relative line number in Neovim (Lua)
To enable relative line number, add the following line to your init.lua. Save this file by doing a :w or Shift + z repeat z. The next time you open Neovim, you should see the relative line number enabled.
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 by opening a command prompt or Windows Terminal instance and running the following command. If winget is installed, this command will print the version number of the […]
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 Kubernetes without needing a remote cluster. Minikube runs a virtual machine on your local machine and then deploys a cluster inside that virtual machine. It uses virtualization software such […]