Moved some bash settings

This commit is contained in:
TKE
2022-05-13 13:26:00 +02:00
parent acd8d616dc
commit 5eab10a17f
2 changed files with 8 additions and 0 deletions

View File

@@ -5,5 +5,8 @@ alias '+'='pushd .'
alias -- '-'='popd' alias -- '-'='popd'
[[ -f ~/.shell_aliases ]] && . ~/.shell_aliases [[ -f ~/.shell_aliases ]] && . ~/.shell_aliases
[[ -f ~/.config/z.sh ]] && . ~/.config/z.sh [[ -f ~/.config/z.sh ]] && . ~/.config/z.sh
[[ -f /home/tke/.http_proxy ]] && . /home/tke/.http_proxy #PROXY_A93JK2
[[ -f /usr/share/doc/fzf/examples/key-bindings.bash ]] && source /usr/share/doc/fzf/examples/key-bindings.bash
[[ -f /usr/share/doc/fzf/examples/completion.bash ]] && source /usr/share/doc/fzf/examples/completion.bash
HISTTIMEFORMAT="%F %T " HISTTIMEFORMAT="%F %T "
shopt -s autocd shopt -s autocd

View File

@@ -13,3 +13,8 @@ $include /etc/inputrc
set show-all-if-ambiguous on set show-all-if-ambiguous on
#tab complete even if case is wrong <3 #tab complete even if case is wrong <3
set completion-ignore-case on set completion-ignore-case on
#disable terminal bell
set bell-style none
#allow cycling through completions if ambigous
TAB: menu-complete
"\e[Z": menu-complete-backward