23 lines
410 B
Bash
23 lines
410 B
Bash
#!/bin/bash
|
|
|
|
#
|
|
# ~/.bashrc
|
|
#
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
alias ls='ls --color=auto'
|
|
alias grep='grep --color=auto'
|
|
PS1='[\u@\h \W]\$ '
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# local ai
|
|
export ROCM_PATH=/opt/rocm
|
|
export HSA_OVERRIDE_GFX_VERSION=11.0.0
|
|
export HIP_VISIBLE_DEVICES=0
|
|
|
|
# Tmuxifier
|
|
export PATH="$HOME/.tmuxifier/bin:$PATH"
|
|
eval "$(tmuxifier init -)"
|