Aliases for installed Rust utils.

This commit is contained in:
Gabriel Simmer 2020-11-09 14:40:54 +00:00
parent e33d0f10e7
commit 8849353f0e
No known key found for this signature in database
GPG key ID: 33BA4D83B160A0A9
3 changed files with 14 additions and 2 deletions

View file

@ -218,4 +218,4 @@ bindsym $mod+p exec --no-startup-id ~/.config/i3/display.sh
exec_always --no-startup-id picom --config ~/.config/picom/picom.conf exec_always --no-startup-id picom --config ~/.config/picom/picom.conf
exec_always --no-startup-id feh --randomize --bg-fill ~/Pictures/cci-bg.png exec_always --no-startup-id feh --bg-fill ~/Pictures/cci-bg.png

View file

@ -21,6 +21,7 @@
"Markdown Table Formatter", "Markdown Table Formatter",
"Package Control", "Package Control",
"Rust Enhanced", "Rust Enhanced",
"SideBarEnhancements",
"SublimeCodeIntel", "SublimeCodeIntel",
"Terminus", "Terminus",
"Terraform", "Terraform",

View file

@ -38,4 +38,15 @@ export PATH="$DENO_INSTALL/bin:$PATH"
SFDX_AC_ZSH_SETUP_PATH=/home/gsimmer/.cache/sfdx/autocomplete/zsh_setup && test -f $SFDX_AC_ZSH_SETUP_PATH && source $SFDX_AC_ZSH_SETUP_PATH; SFDX_AC_ZSH_SETUP_PATH=/home/gsimmer/.cache/sfdx/autocomplete/zsh_setup && test -f $SFDX_AC_ZSH_SETUP_PATH && source $SFDX_AC_ZSH_SETUP_PATH;
# Starship init. # Starship init.
eval "$(starship init zsh)" eval "$(starship init zsh)"
# aliases for various Rust-based utils.
if [ $(which exa) != 'exa not found' ]; then
alias ls=exa
fi
if [ $(which bat) != 'bat not found' ]; then
alias cat=bat
fi
if [ $(which rg) != 'rg not found' ]; then
alias grep=rg
fi