Last active
April 3, 2025 11:50
-
-
Save timendum/f7afcb313770e6b7a39e5583d76555fd to your computer and use it in GitHub Desktop.
dotbins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tools: | |
# Order is important! | |
rg: BurntSushi/ripgrep | |
bat: | |
repo: sharkdp/bat | |
shell_code: | |
bash: | | |
alias cat='bat -pp' | |
alias less='bat --paging=always' | |
powershell: | | |
If (Test-Path Alias:cat) {Remove-Item Alias:cat} | |
If (Test-Path Alias:less) {Remove-Item Alias:less} | |
function BATCAT {bat -pp} | |
Set-Alias -Name cat -Value BATCAT -Description "Better cat" | |
function BATLESS {bat --paging=always} | |
Set-Alias -Name less -Value BATLESS -Description "Better less" | |
duf: muesli/duf | |
fd: sharkdp/fd | |
rclone: rclone/rclone | |
just: casey/just | |
eza: | |
repo: eza-community/eza | |
shell_code: | |
bash: | | |
alias ls='eza' | |
alias ll='eza -l' | |
powershell: | | |
If (Test-Path Alias:ls) {Remove-Item Alias:ls} | |
If (Test-Path Alias:ll) {Remove-Item Alias:ll} | |
function EZAG {eza -G} | |
Set-Alias -Name ls -Value EZAG -Description "Better ls" | |
function EZAL {eza -l} | |
Set-Alias -Name ll -Value EZAL -Description "Better ls -l" | |
starship: | |
repo: starship/starship | |
shell_code: | |
bash: eval "$(starship init bash)" | |
powershell: "Invoke-Expression (& { (starship init powershell | Out-String) })" | |
zoxide: # after starship, too hook on prompt | |
repo: ajeetdsouza/zoxide | |
shell_code: | |
bash: eval "$(zoxide init bash --cmd cd)" | |
powershell: "Invoke-Expression (& { (zoxide init powershell --cmd cd | Out-String) })" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment