-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
38 lines (32 loc) · 1 KB
/
.bashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# source ~/.screenlayout/layout.sh
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
if [ -f ~/.bash_generals ]; then
. ~/.bash_generals
fi
# BEGIN_KITTY_SHELL_INTEGRATION
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi
# END_KITTY_SHELL_INTEGRATION
export DEFAULT_TERM=kitty
#
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/nicklas/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/nicklas/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/nicklas/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/nicklas/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
eval "$(zoxide init bash)"