From 7a4672075fe7b6e23e6cddf7e2457bac040d0357 Mon Sep 17 00:00:00 2001 From: sheldonmlee Date: Mon, 26 Apr 2021 13:40:00 +0800 Subject: [PATCH] Aliased vim as nvim. --- .bash_aliases | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/.bash_aliases b/.bash_aliases index 20ba1d0..9ed3a7a 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,18 +1,34 @@ +# +# CLI +# + #.dotfiles repo alias alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' # show file sizes alias and sort by size alias sizes='du -hs .[^.]* * | sort -h' -# tmux '-2' colors -alias tmux="tmux -2" # bash tree alias alias gittree="git log --all --decorate --oneline --graph" -# open spotify web client on firefox -alias spw="firefox --new-window https://open.spotify.com/ & exit" -# run pulsemixer -alias mixer="pulsemixer" # turn screen off alias screenoff="sleep 1; xset dpms force off" + +# +# TUI +# + +# run pulsemixer +alias mixer="pulsemixer" +# use nvim instead of vim +alias vim="nvim" + +# +# GUI +# + +# tmux '-2' colors +alias tmux="tmux -2" # matlab alias matlab="matlab & disown" # bpytop alias btop="bpytop" +# open spotify web client on firefox +alias spw="firefox --new-window https://open.spotify.com/ & exit"