Compare commits

...

3 Commits

3 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,9 @@ export HISTSIZE=20000
export HISTFILESIZE=20000
export PROMPT_DIRTRIM=3
# Save and display timestamps for history
HISTTIMEFORMAT="[%F %T] "
# Color output and default options
export GREP_OPTS='--color=auto'
export LS_OPTS='--color=auto -hFN --group-directories-first'

View File

@ -70,6 +70,9 @@ function lscat() {
done
}
# Shortcut for lscat (either c for cat or c for "see")
alias c='lscat'
function calc() {
echo "$@" | bc
}

View File

@ -2,6 +2,9 @@
# Normalize line endings
autocrlf = input
[advice]
detachedHead = false
[init]
defaultBranch = main