You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
677 B
Bash
25 lines
677 B
Bash
#!/usr/bin/env bash
|
|
#ft=bash
|
|
|
|
# always save bash history before showing prompt; allow reloading bashrc
|
|
if [[ ! $PROMPT_COMMAND =~ "history -a" ]]; then
|
|
PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
|
|
fi
|
|
|
|
# Disable capslock
|
|
if [[ -x $(which setxkbmap) ]] && [[ $(uname) == Linux ]]; then
|
|
setxkbmap -option ctrl:nocaps
|
|
fi
|
|
|
|
# make less more friendly for non-text input files, see lesspipe(1)
|
|
if [ -x /usr/bin/lesspipe ]; then
|
|
eval "$(SHELL=/bin/sh lesspipe)"
|
|
fi
|
|
|
|
# enable color support of ls and also add handy aliases
|
|
if [ -x /usr/bin/dircolors ]; then
|
|
if test -r ~/.dircolors; then
|
|
eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
fi
|
|
fi
|