Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
c74e84ab5f
|
@@ -12,7 +12,7 @@
|
|||||||
./modules/plugins/conform-nvim.nix
|
./modules/plugins/conform-nvim.nix
|
||||||
./modules/plugins/fzf-lua.nix
|
./modules/plugins/fzf-lua.nix
|
||||||
./modules/plugins/gitsigns.nix
|
./modules/plugins/gitsigns.nix
|
||||||
./modules/plugins/lazygit.nix
|
# ./modules/plugins/lazygit.nix
|
||||||
./modules/plugins/mini.nix
|
./modules/plugins/mini.nix
|
||||||
./modules/plugins/neotree.nix
|
./modules/plugins/neotree.nix
|
||||||
./modules/plugins/oil.nix
|
./modules/plugins/oil.nix
|
||||||
|
|||||||
@@ -169,6 +169,15 @@
|
|||||||
yamlfmt = {
|
yamlfmt = {
|
||||||
command = "${lib.getExe pkgs.yamlfmt}";
|
command = "${lib.getExe pkgs.yamlfmt}";
|
||||||
};
|
};
|
||||||
|
terraform_fmt = {
|
||||||
|
command = "${lib.getExe (
|
||||||
|
pkgs.terraform.overrideAttrs (oldAttrs: {
|
||||||
|
meta = lib.recursiveUpdate oldAttrs.meta {
|
||||||
|
license = lib.licenses.gpl3Only;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
)}";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ lib, ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
plugins.snacks = {
|
plugins.snacks = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -15,6 +15,12 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extraPackages = [
|
||||||
|
pkgs.ripgrep
|
||||||
|
pkgs.fd
|
||||||
|
pkgs.lazygit
|
||||||
|
];
|
||||||
|
|
||||||
keymaps = [
|
keymaps = [
|
||||||
{
|
{
|
||||||
key = "<leader><space>";
|
key = "<leader><space>";
|
||||||
|
|||||||
Reference in New Issue
Block a user