From 45c700788dc8d600a29d889983f484d2b475ebe6 Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Sun, 21 Apr 2024 20:37:59 +0000 Subject: [PATCH] track bash config + add default editor --- .bashrc | 19 +++++++++++++++++++ .zshrc | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .bashrc diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..61a0332 --- /dev/null +++ b/.bashrc @@ -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 diff --git a/.zshrc b/.zshrc index c570de3..60af2d0 100644 --- a/.zshrc +++ b/.zshrc @@ -124,5 +124,5 @@ compinit neofetch - +export EDITOR=nvim export PATH=$PATH:/home/benjamin/.spicetify