feat(neovim): add tree-sitter-pest support and refactor configurations

This commit is contained in:
uttarayan21
2025-11-03 00:56:43 +05:30
parent 0f77e228b0
commit fb3af7f9fa
10 changed files with 115 additions and 74 deletions

View File

@@ -41,6 +41,7 @@
./yazi.nix
./yt-dlp.nix
./zoxide.nix
./neovim.nix
# ./goread.nix
# ./helix.nix
@@ -74,7 +75,6 @@
just
macchina
nb
(nixvim.makeNixvim (import ../../neovim))
p7zip
pandoc
pfetch-rs

7
home/programs/neovim.nix Normal file
View File

@@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.nixvim =
{
enable = true;
}
// (import ./../../neovim {inherit pkgs;});
}