about summary refs log tree commit diff
path: root/dotfiles/nvim/init.lua
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2024-03-23 00:38:10 +0100
committerBaitinq <[email protected]>2024-03-23 00:38:10 +0100
commit0ee9c3dd332b8cc90030523e83bb6c14d3bf3392 (patch)
tree7d6905b88af538a1dff72ff3a91018c2d5336558 /dotfiles/nvim/init.lua
parentFlake: Add tmux tpm plugin (diff)
downloadnixos-config-0ee9c3dd332b8cc90030523e83bb6c14d3bf3392.tar.gz
nixos-config-0ee9c3dd332b8cc90030523e83bb6c14d3bf3392.tar.bz2
nixos-config-0ee9c3dd332b8cc90030523e83bb6c14d3bf3392.zip
Dotfiles: Nvim: Relative line numbers
Diffstat (limited to '')
-rw-r--r--dotfiles/nvim/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/nvim/init.lua b/dotfiles/nvim/init.lua
index bcd527f..413de81 100644
--- a/dotfiles/nvim/init.lua
+++ b/dotfiles/nvim/init.lua
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
 vim.g.maplocalleader = ' '
 
 -- Set to true if you have a Nerd Font installed
-vim.g.have_nerd_font = false
+vim.g.have_nerd_font = true
 
 -- [[ Setting options ]]
 -- See `:help vim.opt`
@@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
 vim.opt.number = true
 -- You can also add relative line numbers, for help with jumping.
 --  Experiment for yourself to see if you like it!
--- vim.opt.relativenumber = true
+vim.opt.relativenumber = true
 
 -- Enable mouse mode, can be useful for resizing splits for example!
 vim.opt.mouse = 'a'