Skip to content

Commit

Permalink
fix(nvim): remove numbers from sign column in terminal window
Browse files Browse the repository at this point in the history
  • Loading branch information
jalil-salame committed Nov 20, 2024
1 parent 89ebb37 commit 8be5c16
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions nvim/augroups.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 8be5c16

Please sign in to comment.