Compare commits

...

3 Commits

Author SHA1 Message Date
a1ad0fa815 add fd and replace ls 2025-05-23 15:40:24 +02:00
9c14f17cd8 switch to starhip 2025-05-23 15:29:03 +02:00
00c61fe4a1 add rust utils 2025-05-23 15:21:11 +02:00
4 changed files with 21 additions and 7 deletions

View File

@@ -16,8 +16,7 @@
"docker" "docker"
"sloth" "sloth"
"vscodium" "vscodium"
"hoppscotch" "bruno"
"postman"
"utm" "utm"
"balenaetcher" "balenaetcher"
"outerbase-studio" "outerbase-studio"

View File

@@ -37,7 +37,8 @@
}; };
shellAliases = { shellAliases = {
l = "ls -hal"; l = "eza -a1lh";
ls = "eza";
dc = "docker compose"; dc = "docker compose";
rsync = "rsync -az --info=progress2"; rsync = "rsync -az --info=progress2";
t = "tmux new-session -A -s main"; t = "tmux new-session -A -s main";
@@ -58,8 +59,11 @@
fish = { fish = {
enable = true; enable = true;
interactiveShellInit = '' interactiveShellInit = ''
if type -q oh-my-posh # if type -q oh-my-posh
oh-my-posh init fish --config ~/.config/omp/config.yaml | source # oh-my-posh init fish --config ~/.config/omp/config.yaml | source
# end
if type -q starship
starship init fish | source
end end
if type -q fnm if type -q fnm
fnm env --use-on-cd | source fnm env --use-on-cd | source

View File

@@ -19,10 +19,21 @@ with pkgs;
tree tree
wget wget
woff2 woff2
bat
rsync rsync
yq yq
# Rust utils
bat
eza
fd
ripgrep
ripgrep-all
zoxide
uutils-coreutils-noprefix
dust
yazi
starship
# Dev # Dev
devenv devenv
nixpacks nixpacks
@@ -38,7 +49,6 @@ with pkgs;
lua lua
luajitPackages.luarocks luajitPackages.luarocks
ast-grep ast-grep
ripgrep
# Language specific # Language specific
nixfmt-rfc-style nixfmt-rfc-style

View File

@@ -16,6 +16,7 @@
boundary boundary
awscli2 awscli2
_1password-cli _1password-cli
vault
]; ];
}; };
} }