dotfiles/bashrc

19 lines
351 B
Bash
Raw Normal View History

2021-12-17 23:02:45 -05:00
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
alias nv=nvim
2022-04-21 21:04:16 -04:00
alias r="urxvt -name Ranger -e ranger & disown"
2021-12-17 23:02:45 -05:00
alias kssh="/usr/bin/kitty +kitten ssh"
neofetch
2021-12-17 23:14:15 -05:00
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
2021-12-17 23:14:15 -05:00