Compare commits
2 Commits
master
...
2585fb1b79
Author | SHA1 | Date | |
---|---|---|---|
2585fb1b79 | |||
17da072e1d |
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,6 +0,0 @@
|
|||||||
[submodule "3rd-party/z"]
|
|
||||||
path = 3rd-party/z
|
|
||||||
url = https://github.com/rupa/z.git
|
|
||||||
[submodule "3rd-party/complete-alias"]
|
|
||||||
path = 3rd-party/complete-alias
|
|
||||||
url = https://github.com/cykerway/complete-alias.git
|
|
1
3rd-party/complete-alias
vendored
1
3rd-party/complete-alias
vendored
Submodule 3rd-party/complete-alias deleted from 7f2555c2fe
@ -2,6 +2,5 @@
|
|||||||
|
|
||||||
if (command -v lsd &> /dev/null)
|
if (command -v lsd &> /dev/null)
|
||||||
then
|
then
|
||||||
alias ls='lsd'
|
alias ls=lsd
|
||||||
alias lt='lsd --tree'
|
|
||||||
fi
|
fi
|
||||||
|
14
bashrc
14
bashrc
@ -25,6 +25,7 @@ source "${BASEDIR}/_helpers.bash"
|
|||||||
|
|
||||||
# Source custom libs
|
# Source custom libs
|
||||||
_source_dir_files "${BASEDIR}"/libs
|
_source_dir_files "${BASEDIR}"/libs
|
||||||
|
# if [ -d "$HOME"/.bash/libs ]; then for lib in "$HOME"/.bash/libs/*.bash; do source "$lib"; done; fi
|
||||||
|
|
||||||
# Source 3rd party libs if they exists
|
# Source 3rd party libs if they exists
|
||||||
_source_file_if_exists "${BASEDIR}/3rd-party/complete-alias/complete_alias"
|
_source_file_if_exists "${BASEDIR}/3rd-party/complete-alias/complete_alias"
|
||||||
@ -32,16 +33,22 @@ _source_file_if_exists "${BASEDIR}/3rd-party/complete-alias/complete_alias"
|
|||||||
|
|
||||||
# Early customization
|
# Early customization
|
||||||
_source_dir_files "${BASEDIR}"/rc.before.d
|
_source_dir_files "${BASEDIR}"/rc.before.d
|
||||||
|
# if [ -d "$HOME"/.bash/rc.before.d ]; then for file in "$HOME"/.bash/rc.before.d/*; do source "$file"; done; fi
|
||||||
|
|
||||||
# Source rc.d/*
|
# Source rc.d/*
|
||||||
_source_dir_files "${BASEDIR}"/rc
|
_source_dir_files "${BASEDIR}"/rc
|
||||||
_source_dir_files "${BASEDIR}"/rc.d
|
_source_dir_files "${BASEDIR}"/rc.d
|
||||||
|
# if [ -d "$HOME"/.bash/rc.d ]; then for file in "$HOME"/.bash/rc.d/*; do source "$file"; done; fi
|
||||||
|
|
||||||
# Source alias definitions
|
# Source alias definitions
|
||||||
_source_file_if_exists ~/.bash_aliases
|
_source_file_if_exists ~/.bash_aliases
|
||||||
_source_file_if_exists "${BASEDIR}"/aliases
|
_source_file_if_exists "${BASEDIR}"/aliases
|
||||||
|
# if [ -f "$HOME"/.bash_aliases ]; then source "$HOME"/.bash_aliases; fi
|
||||||
|
# if [ -f "$HOME"/.bash/aliases ]; then source "$HOME"/.bash/aliases; fi
|
||||||
_source_dir_files "${BASEDIR}"/aliases
|
_source_dir_files "${BASEDIR}"/aliases
|
||||||
_source_dir_files "${BASEDIR}"/aliases.d
|
_source_dir_files "${BASEDIR}"/aliases.d
|
||||||
|
# if [ -d "$HOME"/.bash/aliases ]; then for file in "$HOME"/.bash/aliases/*; do source "$file"; done; fi
|
||||||
|
# if [ -d "$HOME"/.bash/aliases.d ]; then for file in "$HOME"/.bash/aliases.d/*; do source "$file"; done; fi
|
||||||
|
|
||||||
# Source bash completion definitions
|
# Source bash completion definitions
|
||||||
# TODO: Améliorer cette partie pour éviter les erreurs quand aucun fichier n'existe
|
# TODO: Améliorer cette partie pour éviter les erreurs quand aucun fichier n'existe
|
||||||
@ -49,8 +56,12 @@ for file in /etc/bash*completion /etc/profile.d/bash*completion*; do source "$fi
|
|||||||
|
|
||||||
_source_file_if_exists ~/.bash_completion
|
_source_file_if_exists ~/.bash_completion
|
||||||
_source_file_if_exists "${BASEDIR}"/completion
|
_source_file_if_exists "${BASEDIR}"/completion
|
||||||
|
# if [ -f "$HOME"/.bash_completion ]; then source "$HOME"/.bash_completion; fi
|
||||||
|
# if [ -f "$HOME"/.bash/completion ]; then source "$HOME"/.bash/completion; fi
|
||||||
_source_dir_files "${BASEDIR}"/completion
|
_source_dir_files "${BASEDIR}"/completion
|
||||||
_source_dir_files "${BASEDIR}"/completion.d
|
_source_dir_files "${BASEDIR}"/completion.d
|
||||||
|
# if [ -d "$HOME"/.bash/completion ]; then for file in "$HOME"/.bash/completion/*; do source "$file"; done; fi
|
||||||
|
# if [ -d "$HOME"/.bash/completion.d ]; then for file in "$HOME"/.bash/completion.d/*; do source "$file"; done; fi
|
||||||
_source_dir_files ~/.nix-profile/share/bash-completion/completions
|
_source_dir_files ~/.nix-profile/share/bash-completion/completions
|
||||||
|
|
||||||
if (command -v _complete_alias &>/dev/null); then
|
if (command -v _complete_alias &>/dev/null); then
|
||||||
@ -59,3 +70,6 @@ fi
|
|||||||
|
|
||||||
# Late customization
|
# Late customization
|
||||||
_source_dir_files "${BASEDIR}"/rc.after.d
|
_source_dir_files "${BASEDIR}"/rc.after.d
|
||||||
|
# if [ -d "$HOME"/.bash/rc.after.d ]; then for file in "$HOME"/.bash/rc.after.d/*; do source "$file"; done; fi
|
||||||
|
|
||||||
|
complete -C /home/ZOE/u86pw03/.local/share/mise/installs/vault/1.18.2/bin/vault vault
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (command -v chezmoi &>/dev/null); then
|
|
||||||
source <(chezmoi completion bash)
|
|
||||||
fi
|
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if (command -v mise &>/dev/null); then
|
if (command -v mise &>/dev/null); then
|
||||||
source <(mise completion bash --include-bash-completion-lib)
|
source <(mise completion bash)
|
||||||
fi
|
fi
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
function term_change_title {
|
function term_change_title
|
||||||
|
{
|
||||||
case $TERM in
|
case $TERM in
|
||||||
# Change the window title of X terminals
|
# Change the window title of X terminals
|
||||||
xterm* | rxvt* | urxvt* | Eterm)
|
xterm*|rxvt*|urxvt*|Eterm)
|
||||||
echo -ne "\033]0;${1}\007"
|
echo -ne "\033]0;${1}\007"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
# Change the window title of screen terminals
|
# Change the window title of screen terminals
|
||||||
screen* | tmux*)
|
screen*)
|
||||||
echo -ne "\033k${1}\033\\"
|
echo -ne "\033k${1}\033\\"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
31
rc.d/fzf
31
rc.d/fzf
@ -1,31 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (command -v fzf &>/dev/null); then
|
|
||||||
|
|
||||||
source <(fzf --bash)
|
|
||||||
|
|
||||||
# Selection de fichiers
|
|
||||||
export FZF_CTRL_T_OPTS="--height 60% \
|
|
||||||
--border sharp \
|
|
||||||
--layout reverse \
|
|
||||||
--prompt ' ' \
|
|
||||||
--pointer ❯ \
|
|
||||||
--marker ✔"
|
|
||||||
|
|
||||||
# Navigation vers un répertoire
|
|
||||||
export FZF_ALT_C_OPTS="--height 60% \
|
|
||||||
--border sharp \
|
|
||||||
--layout reverse \
|
|
||||||
--prompt ' ' \
|
|
||||||
--pointer ❯ \
|
|
||||||
--marker ✔"
|
|
||||||
|
|
||||||
# Navigation dans l'historique
|
|
||||||
export FZF_CTRL_R_OPTS="--height 60% \
|
|
||||||
--border sharp \
|
|
||||||
--layout reverse \
|
|
||||||
--prompt ' ' \
|
|
||||||
--pointer ❯ \
|
|
||||||
--marker ✔"
|
|
||||||
|
|
||||||
fi
|
|
10
rc.d/tmux
10
rc.d/tmux
@ -8,13 +8,13 @@ if (command -v tmux &>/dev/null); then
|
|||||||
nb_sessions_attached=$(tmux list-session | grep -c "attached")
|
nb_sessions_attached=$(tmux list-session | grep -c "attached")
|
||||||
nb_sessions_detached=$(tmux list-session | grep -c -v "attached")
|
nb_sessions_detached=$(tmux list-session | grep -c -v "attached")
|
||||||
|
|
||||||
echo_info "tmux : found ${nb_sessions} session(s)"
|
echo_info "Found ${nb_sessions} tmux session(s)"
|
||||||
|
|
||||||
echo "➤ ${nb_sessions_attached} session(s) attached"
|
echo " * ${nb_sessions_attached} attached"
|
||||||
tmux list-sessions | grep "attached" | sed -e 's/^/ • /'
|
tmux list-sessions | grep "attached" | sed -e 's/^/ - /'
|
||||||
|
|
||||||
echo "➤ ${nb_sessions_detached} session(s) detached"
|
echo " * ${nb_sessions_detached} detached"
|
||||||
tmux list-sessions | grep -v "attached" | sed -e 's/^/ • /'
|
tmux list-sessions | grep -v "attached" | sed -e 's/^/ - /'
|
||||||
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
if (command -v zoxide &>/dev/null); then
|
|
||||||
eval "$(zoxide init bash)"
|
|
||||||
fi
|
|
Reference in New Issue
Block a user