initial commit

This commit is contained in:
2026-03-08 14:37:55 +00:00
commit 4da672cbc7
62 changed files with 3460 additions and 0 deletions

24
.bashrc Normal file
View File

@@ -0,0 +1,24 @@
#
# ~/.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"