add bash in current form

This commit is contained in:
Vladan Popovic 2024-09-29 21:03:26 +02:00
commit 3065a9db72
5 changed files with 170 additions and 0 deletions

17
bash/.bash_profile Normal file
View file

@ -0,0 +1,17 @@
# vim: set ft=sh:
EDITOR=nvim
GIT_EDITOR=$EDITOR
HISTCONTROL=ignoredups:erasedups # Avoid duplicates
HISTFILESIZE=100000000 # big big history
HISTSIZE=100000000 # big big history
LIBVIRT_DEFAULT_URI='qemu:///system'
MANWIDTH=80
RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
SYSTEMD_EDITOR=$EDITOR
TERM=alacritty
[[ -f ~/.bashrc ]] && . ~/.bashrc
# opam configuration
test -r /home/vladan/.opam/opam-init/init.sh && . /home/vladan/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true