summaryrefslogtreecommitdiff
path: root/.config/shell/aliasrc
blob: b0c76eec81f6e4fa2386617d506f7f330d02fe4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh

# Use neovim for vim if present.
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"

# Use XINITRC variable if file exists.
[ -f "$XINITRC" ] && alias startx="startx $XINITRC"

# sudo not required for some system commands.
for x in mount unmount sv pacman updatedb su ; do
	alias $x="sudo $x"
done

# Verbosity and settings that you pretty much just always are going to want.
alias \
	cp="cp -iv" \
	mv="mv -iv" \
	rm="rm -vI" \
	bc="bc -ql" \
	mkd="mkdir -pv" \
	ffmpeg="ffmpeg -hide_banner"

alias \
	ls="ls -hN --color=auto --group-directories-first" \
	grep="grep --color=auto" \
	diff="diff --color=auto" \
	ccat="highlight --out-format=ansi"

# My aliases for different programs
alias \ 
	lg='lazygit' \
	gpu-watch="watch -n -1 nvidia-smi" \
	zshconfig="nvim ~/.zshrc" \
	gp='git add . && git commit -m "auto push" && git push' \
	zrc='nvim ~/.zshrc' \
	zsource='source ~/.zshrc' \
	v='nvim' \
	vi='nvim' \
	vim='nvim' \
	config='/usr/bin/git --git-dir=$HOME/dotfiles/ --work-tree=$HOME' \
	tmux='tmux -f $HOME/.config/tmux/.tmux.conf'