Compare commits
3 Commits
a8d1c29d14
...
a7f548e948
| Author | SHA1 | Date |
|---|---|---|
|
|
a7f548e948 | |
|
|
2c00847807 | |
|
|
3458164a38 |
3
.bashrc
3
.bashrc
|
|
@ -14,6 +14,9 @@ export HISTSIZE=20000
|
||||||
export HISTFILESIZE=20000
|
export HISTFILESIZE=20000
|
||||||
export PROMPT_DIRTRIM=3
|
export PROMPT_DIRTRIM=3
|
||||||
|
|
||||||
|
# Save and display timestamps for history
|
||||||
|
HISTTIMEFORMAT="[%F %T] "
|
||||||
|
|
||||||
# Color output and default options
|
# Color output and default options
|
||||||
export GREP_OPTS='--color=auto'
|
export GREP_OPTS='--color=auto'
|
||||||
export LS_OPTS='--color=auto -hFN --group-directories-first'
|
export LS_OPTS='--color=auto -hFN --group-directories-first'
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,9 @@ function lscat() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Shortcut for lscat (either c for cat or c for "see")
|
||||||
|
alias c='lscat'
|
||||||
|
|
||||||
function calc() {
|
function calc() {
|
||||||
echo "$@" | bc
|
echo "$@" | bc
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
# Normalize line endings
|
# Normalize line endings
|
||||||
autocrlf = input
|
autocrlf = input
|
||||||
|
|
||||||
|
[advice]
|
||||||
|
detachedHead = false
|
||||||
|
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue