mirror of https://github.com/Chizi123/Dotfiles.git

Joel Grunbaum
2023-10-03 c77a02f4c3526387f7d45076f2219f44062dc3af
Added ble.sh for bash completions
3 files modified
1 files added
14 ■■■■■ changed files
.gitmodules 3 ●●●●● patch | view | raw | blame | history
bash/DICT 6 ●●●●● patch | view | raw | blame | history
bash/bashrc 4 ●●●● patch | view | raw | blame | history
bash/ble.sh @ 9d84b4 1 ●●●● patch | view | raw | blame | history
.gitmodules
@@ -6,3 +6,6 @@
    path = zsh/antidote
    url = https://github.com/mattmc3/antidote.git
    branch = main
[submodule "bash/ble.sh"]
    path = bash/ble.sh
    url = https://github.com/akinomyoga/ble.sh.git
bash/DICT
@@ -1,3 +1,9 @@
DEPS="all-shells"
FILES="bashrc profile"
LOCATIONS="${HOME}/.bashrc ${HOME}/.bash_profile"
custom() {
cd ble.sh
make
ln -s "$(pwd)/out/ble.sh" "${HOME}/.ble.sh"
}
bash/bashrc
@@ -2,6 +2,10 @@
PS1="[\u@\h \W]\$ "
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
# Common completions
source ~/.commonshell
[ -r /usr/share/doc/pkgfile/command-not-found.bash ] && source /usr/share/doc/pkgfile/command-not-found.bash
[ -r /usr/share/bash-completion/bash_completion   ] && . /usr/share/bash-completion/bash_completion
# Ble.sh for syntax highlighting and shell completion
[ -r ${HOME}/.ble.sh ] && source ${HOME}/.ble.sh
bash/ble.sh
New file
@@ -0,0 +1 @@
Subproject commit 9d84b424daf31b192891c06275fff316fa5ddd35