-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbashrc
41 lines (34 loc) · 793 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
# Source global definitions
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
if [ "$BASH_COMPLETION_VERSINFO" = "" ]; then
. /etc/bash_completion
fi
source ~/.bash/mise
# source ~/.bash/asdf
source ~/.bash/bin
source ~/.bash/common
source ~/.bash/docker
source ~/.bash/fzf
source ~/.bash/git
source ~/.bash/golang
source ~/.bash/history
source ~/.bash/kubernetes
source ~/.bash/pass
source ~/.bash/prompt
source ~/.bash/rancher
source ~/.bash/rg
source ~/.bash/ruby
source ~/.bash/snap
source ~/.bash/tmux
source ~/.bash/private
source ~/.bash/gitlab
source ~/.bash/zilium
# use .localrc for settings specific to one system
if [ -f ~/.localrc ]; then
source ~/.localrc
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
HISTCONTROL=ignoredups:erasedups
. `which env_parallel.bash`