Користувальницькькі налаштування

Налаштування сайту


software:os:linux:bash_config

Розбіжності

Тут показані розбіжності між вибраною ревізією та поточною версією сторінки.

Посилання на цей список змін

Порівняння попередніх версій Попередня ревізія
Наступна ревізія
Попередня ревізія
software:os:linux:bash_config [2020/05/11 01:14]
charon [Main config]
software:os:linux:bash_config [2024/04/16 02:52] (поточний)
charon
Рядок 1: Рядок 1:
 ====== Bash configuration ====== ====== Bash configuration ======
 +===== About Fedora 38 =====
 +Fedora checks //~/.bashrc.d/// existence and sources everything from it. So move files below to this directory as //main//, //aliases// and remove line
 +  [ -f "$HOME/.bash_aliases" ] && source "$HOME/.bash_aliases"
 +from main config  
 ===== Main config ===== ===== Main config =====
 <file bash .bashrc> <file bash .bashrc>
Рядок 53: Рядок 57:
 # The PS4 shell variable defines the prompt that gets displayed, when you execute a shell script in debug mode # The PS4 shell variable defines the prompt that gets displayed, when you execute a shell script in debug mode
 export PS4='$0.$LINENO+ ' export PS4='$0.$LINENO+ '
 +
 +################
 +# Autocomplete #
 +################
 +
 +# enable programmable completion features (you don't need to enable
 +# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
 +# sources /etc/bash.bashrc).
 +if ! shopt -oq posix; then
 +  if [ -f /usr/share/bash-completion/bash_completion ]; then
 +    . /usr/share/bash-completion/bash_completion
 +  elif [ -f /etc/bash_completion ]; then
 +    . /etc/bash_completion
 +  fi
 +fi
 +
 +[ -f "$HOME/.local/bin/aws_completer" ] && complete -C "$HOME/.local/bin/aws_completer" aws
  
 ######## ########
Рядок 59: Рядок 80:
 export HISTSIZE=1000 export HISTSIZE=1000
 export HISTTIMEFORMAT="%t%d.%m.%y %H:%M:%S%t" export HISTTIMEFORMAT="%t%d.%m.%y %H:%M:%S%t"
 +export EDITOR=/usr/bin/vim.nox
 +export LESS="-e -X"
 +
 +export SSH_ASKPASS='/usr/bin/ksshaskpass'
 +export XDG_CONFIG_HOME=$HOME/.config
 +export XDG_CACHE_HOME=$HOME/.cache
 +export XDG_DATA_HOME=$HOME/.local/share
  
 [ -f "$HOME/.bash_aliases" ] && source "$HOME/.bash_aliases" [ -f "$HOME/.bash_aliases" ] && source "$HOME/.bash_aliases"
software/os/linux/bash_config.1589148896.txt.gz · Востаннє змінено: 2020/05/11 01:14 повз charon