Enable nvim relative line numbers

This commit is contained in:
GHOSCHT 2023-12-29 14:19:04 +01:00
parent 5270b13465
commit d875ef3466
Signed by: ghoscht
GPG key ID: 2C2C1C62A5388E82
2 changed files with 5 additions and 1 deletions

View file

@ -152,6 +152,10 @@ in {
type = "lua";
}
];
extraLuaConfig = ''
${builtins.readFile ./options.lua}
'';
};
xdg.desktopEntries = {

View file

@ -3,7 +3,7 @@ vim.g.maplocalleader = " "
vim.o.clipboard = "unnamedplus"
vim.o.number = true
-- vim.o.number = true
vim.o.relativenumber = true
vim.o.signcolumn = "yes"