started new config

This commit is contained in:
2025-12-28 14:48:30 +09:00
commit a743f2c943
17 changed files with 661 additions and 0 deletions

37
home/cmd_tools.nix Normal file
View File

@@ -0,0 +1,37 @@
{ config, pkgs, lib, ... }:
{
programs.eza = {
enable = true;
git = true;
icons = "always";
enableZshIntegration = true;
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
tmux.enableShellIntegration = true;
};
programs.bat = {
enable = true;
config = {
tabs = "4";
wrap = "character";
italic-text = "never";
theme = "ansi";
};
};
programs.zoxide = {
enable = true;
enableZshIntegration = true;
options = [
"--cmd cd"
];
};
programs.gitui = {
enable = true;
};
}