fix(nvim): remove numbers from sign column in terminal window
All checks were successful
/ check (push) Successful in 47s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s

This commit is contained in:
Jalil David Salamé Messina 2024-11-20 21:57:58 +01:00
parent 89ebb377bc
commit 8be5c169b6
Signed by: jalil
GPG key ID: F016B9E770737A0B

View file

@ -15,9 +15,23 @@ in
"highlightOnYank" = { };
"lspConfig" = { };
"restoreCursorPosition" = { };
"terminalConfig" = { };
};
autoCmd =
[
{
group = "terminalConfig";
event = "TermOpen";
pattern = "*";
callback =
# lua
mkRaw ''
function(args)
vim.wo.number = false
vim.wo.relativenumber = false
end
'';
}
{
group = "highlightOnYank";
event = "TextYankPost";