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
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:
parent
89ebb377bc
commit
8be5c169b6
1 changed files with 14 additions and 0 deletions
|
@ -15,9 +15,23 @@ in
|
||||||
"highlightOnYank" = { };
|
"highlightOnYank" = { };
|
||||||
"lspConfig" = { };
|
"lspConfig" = { };
|
||||||
"restoreCursorPosition" = { };
|
"restoreCursorPosition" = { };
|
||||||
|
"terminalConfig" = { };
|
||||||
};
|
};
|
||||||
autoCmd =
|
autoCmd =
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
group = "terminalConfig";
|
||||||
|
event = "TermOpen";
|
||||||
|
pattern = "*";
|
||||||
|
callback =
|
||||||
|
# lua
|
||||||
|
mkRaw ''
|
||||||
|
function(args)
|
||||||
|
vim.wo.number = false
|
||||||
|
vim.wo.relativenumber = false
|
||||||
|
end
|
||||||
|
'';
|
||||||
|
}
|
||||||
{
|
{
|
||||||
group = "highlightOnYank";
|
group = "highlightOnYank";
|
||||||
event = "TextYankPost";
|
event = "TextYankPost";
|
||||||
|
|
Loading…
Reference in a new issue