This commit is contained in:
fanyx 2022-07-12 17:01:56 +02:00
parent c974498c72
commit 811a851842
1 changed files with 1 additions and 6 deletions

View File

@ -7,9 +7,6 @@
# If not running interactively, don't do anything # If not running interactively, don't do anything
[[ $- != *i* ]] && return [[ $- != *i* ]] && return
PATH=~/.local/bin:$PATH
PATH=~/.luarocks/bin:$PATH
################################# #################################
# - bash_aliases # - bash_aliases
# - bash-completion # - bash-completion
@ -17,6 +14,7 @@ PATH=~/.luarocks/bin:$PATH
# always bash-completion first # always bash-completion first
[[ -r /usr/share/bash-completion/bash_completion ]] && . /usr/share/bash-completion/bash_completion [[ -r /usr/share/bash-completion/bash_completion ]] && . /usr/share/bash-completion/bash_completion
# custom bash-completions
if [[ -d ~/.config/completions ]]; then if [[ -d ~/.config/completions ]]; then
for i in ~/.config/completions/*; do for i in ~/.config/completions/*; do
. $i . $i
@ -61,9 +59,6 @@ command -v direnv &>/dev/null && eval "$(direnv hook bash)"
export XBPS_DISTDIR="/home/hendrik/git/void-packages" export XBPS_DISTDIR="/home/hendrik/git/void-packages"
export SVDIR="/home/hendrik/sv" export SVDIR="/home/hendrik/sv"
export HOME="/home/hendrik"
export EDITOR="vim"
# BEGIN_KITTY_SHELL_INTEGRATION # BEGIN_KITTY_SHELL_INTEGRATION
if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi if test -n "$KITTY_INSTALLATION_DIR" -a -e "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; then source "$KITTY_INSTALLATION_DIR/shell-integration/bash/kitty.bash"; fi