From 48ef78fd135d72b55c7eec5e7b00dc521278b2d8 Mon Sep 17 00:00:00 2001 From: Harivansh Rathi Date: Wed, 8 Apr 2026 20:41:10 -0400 Subject: [PATCH] nvim: add tree-sitter CLI to extraPackages Ensures the tree-sitter binary is available in nvim's PATH so nvim-treesitter auto_install can compile parsers (e.g. Go) without requiring a separate brew install. --- config/lazygit/config.yml | 8 -------- home/nvim.nix | 1 + lib/theme.nix | 7 +++++++ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/lazygit/config.yml b/config/lazygit/config.yml index 62098d5..0f8c697 100644 --- a/config/lazygit/config.yml +++ b/config/lazygit/config.yml @@ -2,11 +2,3 @@ git: pagers: - pager: delta --paging=never colorArg: always -gui: - showBottomLine: false - showListFooter: false - showPanelJumps: false - showCommandLog: false - showRandomTip: false - splitDiff: auto - border: rounded diff --git a/home/nvim.nix b/home/nvim.nix index 241a37c..1e3daf9 100644 --- a/home/nvim.nix +++ b/home/nvim.nix @@ -49,6 +49,7 @@ in python3 ripgrep stylua + tree-sitter vscode-langservers-extracted nodePackages.bash-language-server nodePackages.typescript diff --git a/lib/theme.nix b/lib/theme.nix index ca9f31e..cb452ec 100644 --- a/lib/theme.nix +++ b/lib/theme.nix @@ -276,6 +276,13 @@ let in '' gui: + showBottomLine: false + showListFooter: false + showPanelJumps: false + showCommandLog: false + showRandomTip: false + splitDiff: auto + border: rounded theme: activeBorderColor: - "${c.activeBorder}"