This commit is contained in:
scbj
2025-01-20 13:51:24 +01:00
parent d5b880915e
commit 93bf74a81c
3 changed files with 12 additions and 6 deletions

View File

@@ -69,6 +69,7 @@ source ~/.bash_alias
script_path=${HOME}/dotfiles/misc/scripts/ script_path=${HOME}/dotfiles/misc/scripts/
source_list=() source_list=()
source_list+=("${script_path}/navigate_bash_setup.sh") source_list+=("${script_path}/navigate_bash_setup.sh")
source_list+=("${script_path}/fzf-bash-history")
source_list+=("${script_path}/colors.sh") source_list+=("${script_path}/colors.sh")
source_list+=("${script_path}/dunst.sh") source_list+=("${script_path}/dunst.sh")
@@ -83,3 +84,7 @@ for script in ${source_list[@]}; do
source ${script} source ${script}
fi fi
done done
if [[ -t 0 && $- = *i* ]]; then
stty -ixon
fi

View File

@@ -1,2 +1,3 @@
alias test='eval $(fc -lnr 1 | fzf --tmux )' alias search-history='eval $(fc -lnr 1 | fzf --tmux )'

View File

@@ -13,9 +13,9 @@ warning_style = "yellow, italic"
error_style = "red, bold" error_style = "red, bold"
stack_number_style = "default" stack_number_style = "default"
stack_separator_style = "cyan" stack_separator_style = "cyan"
stack_path_style = "default" stack_path_style = "italic"
stack_punct_style = "#E01458" stack_punct_style = "#805820"
bookmarks_name_style = "default" bookmarks_name_style = "bold"
bookmarks_seperator_style = "cyan" bookmarks_seperator_style = "cyan"
bookmarks_path_style = "default" bookmarks_path_style = "italic"
bookmarks_punct_style = "#E01458" bookmarks_punct_style = "bold, #805820"