Files
dotfiles/.bashrc
2026-03-08 14:37:55 +00:00

25 lines
406 B
Bash

#
# ~/.bashrc
#
export HISTSIZE=10
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias e="nvim"
alias n="nvim ."
alias ls='ls -la --color=auto'
alias grep='grep --color=auto'
PS1='[\u@\h \W]\$ '
export OPENCODE_ENABLE_EXA=1
export PATH="/home/alex/.bun/bin:$PATH"
alias c="opencode"
alias cc="opencode --continue"
alias ff="biome format --fix"
. "$HOME/.local/bin/env"