-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
101 lines (60 loc) · 2.29 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
################################################################################
##
## ~/.bashrc
##
################################################################################
################################################################################
### Head: check mode
##
##
## If not running interactively, don't do anything
##
[[ $- != *i* ]] && return
##
### Tail: check mode
################################################################################
################################################################################
### Head: ignoreeof
##
##
## * Search: [bash ctrl d](https://www.google.com/search?q=bash+ctrl+d)
## * https://www.gnu.org/software/bash/manual/bash.html#index-end_002dof_002dfile-_0028usually-C_002dd_0029
## * https://www.gnu.org/software/bash/manual/bash.html#index-IGNOREEOF
##
## disable `ctrl + d` to exit
set -o ignoreeof
##
### Tail: ignoreeof
################################################################################
################################################################################
### Head: alias
##
alias ls='ls --color=auto'
##
### Tail: alias
################################################################################
################################################################################
### Head: prompt
##
#PS1='[\u@\h \W]\$ '
#PS1='\u@\H [\t] (\w) \n $ '
#PS1='\n\u@\H [\t] (\w) \n $ '
#PS1='┌───────────────────>\n│ \u@\H [\t] (\w)\n└─> '
#PS1='┌─────\n│ \u@\H [\t] (\w)\n└───── '
#PS1='│\n│ \u@\H [\t] (\w)\n│ '
#PS1='┌────────────────────\n│ \u@\H [\t] (\w)\n│ '
PS1='┌─────\n│ \u@\H [\t] (\w)\n│ '
##
### Tail: prompt
################################################################################
################################################################################
### Head: bashrc-enhance
##
##
## Load: ~/.config/bashrc-enhance/asset/port/main.sh
##
__BASHRC_ENHANCE_DIR_PATH__="${HOME}/.config/bashrc-enhance"
[ -f "${__BASHRC_ENHANCE_DIR_PATH__}/asset/port/main.sh" ] && . "${__BASHRC_ENHANCE_DIR_PATH__}/asset/port/main.sh"
##
### Tail: bashrc-enhance
################################################################################