From 757b42d7c6486517cb89c63b312f288770bee6a0 Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Thu, 20 Feb 2025 03:03:04 +0800 Subject: [PATCH] feat: add thefuck and homebrew (dependency) to bashrc --- .bashrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.bashrc b/.bashrc index e4a6de2..c4435c5 100644 --- a/.bashrc +++ b/.bashrc @@ -117,5 +117,11 @@ export PATH="$HOME/nvim/bin:$PATH" # Theming export PS1="\[\e[36m\]$(date +'%H:%M:%S')\[\e[32m\]$USER \[\e[35m\]\w \[\e[31m\]$ " +# Homebrew +eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)" + +# thefuck +eval $(thefuck --alias) + # Path setting -export PATH="$HOME/bin:$PATH" \ No newline at end of file +export PATH="$HOME/bin:$PATH"