From fcb61bcbf4df7dcc6ff1c99afb510b5f6ffc232c Mon Sep 17 00:00:00 2001 From: mattia Date: Wed, 11 Aug 2021 14:42:44 +0200 Subject: [PATCH] bashrc.cust: Ignore case on completion --- bashrc.cust | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bashrc.cust b/bashrc.cust index d3c6b55..f8f3490 100644 --- a/bashrc.cust +++ b/bashrc.cust @@ -1,4 +1,8 @@ # Custom configuration file # Prompt configuration -PS1="\[\033[0;31m\]\342\224\214\342\224\200\$([[ \$? != 0 ]] && echo \"(\[\033[0;31m\]\342\234\227\[\033[0;31m\])\342\224\200\")[$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]root'; else echo '\[\033[0;39m\]\u'; fi)\[\033[01;33m\]@\[\033[01;96m\]\h\[\033[0;31m\]]\342\224\200[\[\033[0;32m\]\w\[\033[0;31m\]]\n\[\033[0;31m\]\342\224\224\342\224\200\342\224\200\342\225\274 \[\033[0m\]\[\e[01;33m\]\\$\[\e[0m\]" \ No newline at end of file +PS1="\[\033[0;31m\]\342\224\214\342\224\200\$([[ \$? != 0 ]] && echo \"(\[\033[0;31m\]\342\234\227\[\033[0;31m\])\342\224\200\")[$(if [[ ${EUID} == 0 ]]; then echo '\[\033[01;31m\]root'; else echo '\[\033[0;39m\]\u'; fi)\[\033[01;33m\]@\[\033[01;96m\]\h\[\033[0;31m\]]\342\224\200[\[\033[0;32m\]\w\[\033[0;31m\]]\n\[\033[0;31m\]\342\224\224\342\224\200\342\224\200\342\225\274 \[\033[0m\]\[\e[01;33m\]\\$\[\e[0m\]" + + +# Attibutes +bind "set completion-ignore-case on" \ No newline at end of file