forked from anishathalye/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathbashrc
46 lines (34 loc) · 954 Bytes
/
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
39
40
41
42
43
44
45
46
# Functions
source ~/.shell/functions.sh
# Allow local customizations in the ~/.shell_local_before file
if [ -f ~/.shell_local_before ]; then
source ~/.shell_local_before
fi
# Allow local customizations in the ~/.bashrc_local_before file
if [ -f ~/.bashrc_local_before ]; then
source ~/.bashrc_local_before
fi
# Settings
# source ~/.bash/settings.bash
# Custom prompt
source ~/.bash/prompt.bash
# Plugins
# source ~/.bash/plugins.bash
# Bootstrap
source ~/.shell/bootstrap.sh
# External settings
source ~/.shell/external.sh
# Aliases
source ~/.shell/aliases.sh
# language enviroment
# source ~/.shell/language.sh
# auto commands
# source ~/.shell/autocommands.sh
# Allow local customizations in the ~/.shell_local_after file
if [ -f ~/.shell_local_after ]; then
source ~/.shell_local_after
fi
# Allow local customizations in the ~/.bashrc_local_after file
if [ -f ~/.bashrc_local_after ]; then
source ~/.bashrc_local_after
fi