Skip to content

Commit

Permalink
update nvim-dbee
Browse files Browse the repository at this point in the history
  • Loading branch information
willruggiano committed Apr 23, 2024
1 parent cfe1a48 commit 9809cc6
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 146 deletions.
122 changes: 54 additions & 68 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
url = "github:willruggiano/neovim.nix";
inputs.flake-parts.follows = "flake-parts";
};
neovim.url = "github:neovim/neovim/nightly?dir=contrib";
neovim = {
# https://github.com/nix-community/neovim-nightly-overlay/pull/483
url = "github:neovim/neovim/nightly?dir=contrib";
inputs.nixpkgs.follows = "nixpkgs";
};
nil.url = "github:oxalica/nil";
nix-colors.url = "github:misterio77/nix-colors";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
Expand Down Expand Up @@ -81,7 +85,7 @@
name = "neovim";
# https://github.com/cachix/devenv/issues/528
containers = lib.mkForce {};
packages = with pkgs; [alejandra just niv nodejs];
packages = with pkgs; [alejandra just niv nodejs tree-sitter];
pre-commit.hooks = {
alejandra.enable = true;
stylua.enable = true;
Expand Down
7 changes: 4 additions & 3 deletions modules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
SRC_ENDPOINT = "https://sourcegraph.com";
};

package = inputs'.neovim.packages.default.override {
tree-sitter = pkgs.callPackage ../pkgs/tree-sitter.nix {};
};
package = inputs'.neovim.packages.default;
# package = inputs'.neovim.packages.default.override {
# tree-sitter = pkgs.callPackage ../pkgs/tree-sitter.nix {};
# };

# Tools to bake into the neovim environment.
# These tools are *appended* to neovim's PATH variable,
Expand Down
Loading

0 comments on commit 9809cc6

Please sign in to comment.