From 217664ffc2f82b61b3bc7fe0f2bd6e97307ac12d Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 15 Aug 2023 12:16:44 +0300 Subject: [PATCH] fix(shell): remove fig from bashrc --- base/bashrc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/base/bashrc b/base/bashrc index b80c571..f458e02 100644 --- a/base/bashrc +++ b/base/bashrc @@ -1,10 +1,6 @@ # this is my bashrc config. there are many like it, but this one is mine. # shellcheck shell=bash -# Fig pre block. Keep at the top of this file. -[[ -f "$HOME/.fig/shell/bashrc.pre.bash" ]] \ - && builtin source "$HOME/.fig/shell/bashrc.pre.bash" - # Defaults export DOTFILES="$HOME/.dotfiles" @@ -27,6 +23,3 @@ ssh-add -A 2>/dev/null; [ -f "${DOTFILES}/config/fzf/fzf.bash" ] \ && source "${DOTFILES}/config/fzf/fzf.bash" -# Fig post block. Keep at the bottom of this file. -[[ -f "$HOME/.fig/shell/bashrc.post.bash" ]] \ - && builtin source "$HOME/.fig/shell/bashrc.post.bash"