diff options
author | Marvin Borner | 2023-05-17 17:45:18 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-17 17:53:44 +0200 |
commit | b96beb25dcb0511f38c13b07c44cc929d5fd53ad (patch) | |
tree | d4c3a9cfed6f9776ad27e79b1cff1c6838a7f9c4 /.bashrc | |
parent | a8a6c3a400174cf476ec8e75bb2e5a5b0afb34da (diff) |
Sync
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -6,7 +6,8 @@ export TERMINAL=$TERM export PAGER=less export BROWSER=firefox export SSH_ASKPASS=ssh-askpass -export PS1='\[\e]0;\us terminal\a\][\W] ' +#export PS1='\[\e]0;\us terminal\a\][\W] ' +export PS1='$(alacritty msg config window.title="$PWD")[\W] ' export LC_CTYPE="en_US.UTF-8" @@ -20,7 +21,7 @@ export CLICOLOR=1 export UNCRUSTIFY_CONFIG=$HOME/.uncrustify.cfg -export ASAN_OPTIONS=verify_asan_link_order=0 +#export ASAN_OPTIONS=verify_asan_link_order=0 umask 027 @@ -48,6 +49,8 @@ alias gch='git checkout' disasm() { objdump -drwC -Mintel "$1" | less; } disasmc() { objdump -drwC -Mintel --visualize-jumps=color "$1" | less -r; } +vg() { valgrind --trace-children=yes --track-fds=yes --log-fd=2 --error-limit=no --leak-check=full --show-possibly-lost=yes --track-origins=yes --show-reachable=yes "$@"; } + set -o noclobber # no > misuse; >| instead #set -o nounset set -o notify @@ -86,3 +89,9 @@ e() { stty susp undef bind -x '"\C-z":"fg"' + +[ -f "/home/melvin/.ghcup/env" ] && source "/home/melvin/.ghcup/env" # ghcup-env + +#[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh +#eval "$(atuin init bash)" +[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh |