Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
512086bffe
|
|||
|
c74e84ab5f
|
@@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
- name: Setup sudo (required for the next step)
|
- name: Setup sudo (required for the next step)
|
||||||
run: apt-get update && apt-get install -y sudo
|
run: apt-get update && apt-get install -y sudo
|
||||||
- name: Setup nix
|
- name: Setup nix
|
||||||
|
|||||||
2
cog.toml
Normal file
2
cog.toml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[commit_types]
|
||||||
|
version = { bump_patch = true, changelog_title = "Version" }
|
||||||
@@ -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,30 +1,5 @@
|
|||||||
{ lib, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
plugins.fzf-lua = {
|
plugins.fzf-lua = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# keymaps = {
|
|
||||||
# "<leader>sf" = {
|
|
||||||
# action = "files";
|
|
||||||
# options = {
|
|
||||||
# desc = "Fzf-Lua File Grep";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# "<leader>sg" = {
|
|
||||||
# action = "live_grep_native";
|
|
||||||
# options = {
|
|
||||||
# desc = "Fzf-Lua File Grep";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# "<leader>sv" = {
|
|
||||||
# action = "git_files";
|
|
||||||
# # settings = {
|
|
||||||
# # previewers.cat.cmd = lib.getExe' pkgs.coreutils "cat";
|
|
||||||
# # winopts.height = 0.5;
|
|
||||||
# # };
|
|
||||||
# options = {
|
|
||||||
# desc = "Fzf-Lua VCS Grep (Git)";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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>";
|
||||||
|
|||||||
6
flake.lock
generated
6
flake.lock
generated
@@ -87,11 +87,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1761016216,
|
"lastModified": 1761999846,
|
||||||
"narHash": "sha256-G/iC4t/9j/52i/nm+0/4ybBmAF4hzR8CNHC75qEhjHo=",
|
"narHash": "sha256-IYlYnp4O4dzEpL77BD/lj5NnJy2J8qbHkNSFiPBCbqo=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "481cf557888e05d3128a76f14c76397b7d7cc869",
|
"rev": "3de8f8d73e35724bf9abef41f1bdbedda1e14a31",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
3
renovate.json5
Normal file
3
renovate.json5
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user