mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
20 lines
393 B
Text
20 lines
393 B
Text
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
export GPG_TTY=$(tty)
|
|
export EDITOR=emacs
|
|
|
|
alias nv=nvim
|
|
alias r="urxvt -name Ranger -e ranger & disown"
|
|
alias kssh="/usr/bin/kitty +kitten ssh"
|
|
|
|
neofetch
|
|
|
|
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
|