26 lines
618 B
Bash
26 lines
618 B
Bash
# If not running interactively, don't do anything (leave this at the top of this file)
|
|
[[ $- != *i* ]] && return
|
|
|
|
# All the default Omarchy aliases and functions
|
|
# (don't mess with these directly, just overwrite them here!)
|
|
source ~/.local/share/omarchy/default/bash/rc
|
|
|
|
# Add your own exports, aliases, and functions here.
|
|
#
|
|
# Make an alias for invoking commands you use constantly
|
|
# alias p='python'
|
|
. "$HOME/.cargo/env"
|
|
|
|
. "$HOME/.local/share/../bin/env"
|
|
alias zed='zeditor'
|
|
alias la='ls -la'
|
|
|
|
|
|
|
|
fastfetch
|
|
|
|
# Added by LM Studio CLI (lms)
|
|
export PATH="$PATH:/home/jake/.lmstudio/bin"
|
|
# End of LM Studio CLI section
|
|
|