Enable nvim relative line numbers
This commit is contained in:
parent
5270b13465
commit
d875ef3466
2 changed files with 5 additions and 1 deletions
|
@ -152,6 +152,10 @@ in {
|
|||
type = "lua";
|
||||
}
|
||||
];
|
||||
|
||||
extraLuaConfig = ''
|
||||
${builtins.readFile ./options.lua}
|
||||
'';
|
||||
};
|
||||
|
||||
xdg.desktopEntries = {
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue