feat: add some tools

This commit is contained in:
2025-09-10 23:22:57 +09:00
parent 6ef275870d
commit d41f27f465
13 changed files with 404 additions and 20 deletions

View File

@@ -12,6 +12,7 @@
};
scrolling.multiplier = 5;
selection.save_to_clipboard = true;
colors = { primary = { background = "#040404"; }; };
};
};
}

View File

@@ -1,4 +1,8 @@
{ pkgs, ... }: {
home.file.".config/fish/completions/flux.fish".source =
../../shell/completions/flux.fish;
home.file.".config/fish/kube.fish".source = ../../shell/kube.fish;
programs.fish = {
enable = true;
shellInit = ''
@@ -14,6 +18,10 @@
alias vi="nvim"
alias rb="sudo nixos-rebuild switch --flake ~/nixos-config#"
alias dry-rb="sudo nixos-rebuild dry-build --flake ~/nixos-config#"
if test -f $HOME/.config/fish/kube.fish
source $HOME/.config/fish/kube.fish
end
'';
plugins = [
# Enable a plugin (here grc for colorized command output) from nixpkgs

View File

@@ -10,6 +10,7 @@
credential.credentialStore = "store";
init.defaultBranch = "main";
core.editor = "nvim";
push.autoSetupRemote = true;
};
};
}