Darryl Dias

10 Oct 2023 in neovimubuntulinux

To 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 + z repeat z.

The next time you open Neovim, you should see the hybrid line number enabled.

https://darryldias.me/2023/relati...

Continue Reading →

25 Jul 2023 in neovimubuntulinux

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, this means we get new features and bug fixes faster. If you need extreme stability in your environment, I recommend going with the stable Ne...

Continue Reading →

05 Jul 2023 in tutorialslinuxneovim

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 configuration. I have been using it for a while now with a few changes.

Setting up Kickstart.nvim

Creating the config directory (Skip this...

Continue Reading →

16 Mar 2023 in neovimtutorials

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 color scheme, but you can use whatever you like.

Read more on how to Kickstart Neovim here

Continue Reading →

11 Mar 2023 in neovimtutorials

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 next time you open Neovim, you should see the relative line number enabled.

https://darryldias.me/2023/hybrid-line-number-in-n...

Continue Reading →