track bash config + add default editor

This commit is contained in:
Benjamin Palko 2024-04-21 20:37:59 +00:00
parent e0908b7484
commit 45c700788d
2 changed files with 20 additions and 1 deletions

19
.bashrc Normal file
View file

@ -0,0 +1,19 @@
#
# ~/.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 HOMEBREW_PREFIX="/home/linuxbrew/.linuxbrew";
export HOMEBREW_CELLAR="/home/linuxbrew/.linuxbrew/Cellar";
export HOMEBREW_REPOSITORY="/home/linuxbrew/.linuxbrew/Homebrew";
export PATH="/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin${PATH+:$PATH}";
export MANPATH="/home/linuxbrew/.linuxbrew/share/man${MANPATH+:$MANPATH}:";
export INFOPATH="/home/linuxbrew/.linuxbrew/share/info:${INFOPATH:-}";
export EDITOR=nvim
export PATH=$PATH:/home/benjamin/.spicetify

2
.zshrc
View file

@ -124,5 +124,5 @@ compinit
neofetch
export EDITOR=nvim
export PATH=$PATH:/home/benjamin/.spicetify