diff --git a/dot_bash_steveno b/dot_bash_steveno index ec44573..d0f68e8 100644 --- a/dot_bash_steveno +++ b/dot_bash_steveno @@ -26,6 +26,7 @@ export HISTSIZE=100000 export HISTFILESIZE=10000000 export EDITOR="nvim" export GOPATH="/home/steveno/.local/share/go" +export OPAMROOT="/home/steveno/.local/opam" shopt -s histverify @@ -35,9 +36,12 @@ eval "$(/home/steveno/.local/bin/mise activate bash)" # kubectl bash completion source <(kubectl completion bash) -# opam configuration -test -r /home/steveno/.opam/opam-init/init.sh && . /home/steveno/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true - # Setup gpg export GPG_TTY=$(tty) gpg-connect-agent updatestartupttyp /bye >/dev/null + +# neovim +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion +eval "$(/home/steveno/.local/bin/mise activate bash)" diff --git a/dot_profile b/dot_profile index b9bb4e8..88940e2 100644 --- a/dot_profile +++ b/dot_profile @@ -20,3 +20,6 @@ export PATH=$PATH:/home/steveno/.local/bin # rust export PATH="$HOME/.cargo/bin:$PATH" + +# opam configuration +test -r /home/steveno/.local/opam/opam-init/init.sh && . /home/steveno/.local/opam/opam-init/init.sh > /dev/null 2> /dev/null || true