repos
/ dotfiles master

dotfiles

mirror archived upstream

Config files for setting up new systems: bash, git, neovim, and VS Code, linked into place by a small install script.

bashdotfilesgithandcodedneovimshellvscode

271 B · 10 lines · Bash Raw History
1alias ls='LC_COLLATE=C ls --color=auto -h --group-directories-first'
2
3alias dps='sudo docker ps -q | xargs sudo docker stats --no-stream'
4
5alias ku='killall -u dev'
6
7alias rand='openssl rand -hex 16'
8
9alias grepex='grep --exclude-dir node_modules --exclude-dir .venv -r'