1 Commits
1.7.0 ... 1.8.0

Author SHA1 Message Date
c74e84ab5f feat(snacks): add extra packages
All checks were successful
build-flake / Build flake (push) Successful in 6m26s
build-flake / Release a new version (push) Successful in 19s
2025-10-26 23:13:44 +02:00
3 changed files with 17 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
./modules/plugins/conform-nvim.nix
./modules/plugins/fzf-lua.nix
./modules/plugins/gitsigns.nix
./modules/plugins/lazygit.nix
# ./modules/plugins/lazygit.nix
./modules/plugins/mini.nix
./modules/plugins/neotree.nix
./modules/plugins/oil.nix

View File

@@ -169,6 +169,15 @@
yamlfmt = {
command = "${lib.getExe pkgs.yamlfmt}";
};
terraform_fmt = {
command = "${lib.getExe (
pkgs.terraform.overrideAttrs (oldAttrs: {
meta = lib.recursiveUpdate oldAttrs.meta {
license = lib.licenses.gpl3Only;
};
})
)}";
};
};
};
};

View File

@@ -1,4 +1,4 @@
{ lib, ... }:
{ lib, pkgs, ... }:
{
plugins.snacks = {
enable = true;
@@ -15,6 +15,12 @@
};
};
extraPackages = [
pkgs.ripgrep
pkgs.fd
pkgs.lazygit
];
keymaps = [
{
key = "<leader><space>";