We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c86782e commit 537e831Copy full SHA for 537e831
bashrc
@@ -14,13 +14,24 @@
14
# go into ~/.bashrc
15
16
. /etc/profile
17
+
18
# Systemd specific, as cutting off output sounds like a silly idea.
19
20
# which(){ (alias; declare -F) | /usr/bin/which -i --read-functions "$@"; }
21
22
# Provides prompt for non-login shells, specifically shells started
23
# in the X environment.
24
25
+# Use case-insensitive filename globbing
26
+shopt -s nocaseglob
27
28
+# Make bash append rather than overwrite the history on disk
29
+shopt -s histappend
30
31
+# When changing directory small typos can be ignored by bash
32
+# for example, cd /vr/lgo/apaache would find /var/log/apache
33
+shopt -s cdspell
34
35
# Colors
36
alias l='ls -AFlh'
37
alias ll='ls -Flh'
0 commit comments