mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
18 lines
350 B
Text
18 lines
350 B
Text
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
alias ls='ls --color=auto'
|
||
|
PS1='[\u@\h \W]\$ '
|
||
|
|
||
|
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
|