Skip to content

Commit

Permalink
Setup ocaml
Browse files Browse the repository at this point in the history
  • Loading branch information
steveno committed Jun 9, 2024
1 parent f7182cb commit 6ceadf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 7 additions & 3 deletions dot_bash_steveno
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)"
3 changes: 3 additions & 0 deletions dot_profile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 6ceadf9

Please sign in to comment.