diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-04 12:29:16 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-04 12:29:16 +0000 |
commit | 128096acf580799da3617dc16b4a5c69f65b6e4c (patch) | |
tree | 5b5284f32e294c5782f9be8c02a92e26ba7e92bd /bashrc | |
parent | a067c11db77eb039e280bb6903d37cee7c3058e1 (diff) |
Big bundle of changes!
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -22,13 +22,12 @@ export HISTCONTROL=ignoreboth:erasedups export HISTSIZE=20000 export HISTFILESIZE=200000 - # Setting PATH export PATH=~/.cargo/bin:$PATH export PATH=~/bin/:$PATH -export PATH="$HOME/gems/bin:$PATH" +export PATH="$PATH:/opt/nvim-linux64/bin" +#export PATH="$HOME/gems/bin:$PATH" export PATH="$HOME/go/bin:$PATH" -export PATH="$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH" export PATH="$HOME/.local/bin:$PATH" export PATH="/usr/local/go/bin:$PATH" export BORG_PASSCOMMAND='pass show borg-passphrase' @@ -322,7 +321,6 @@ append_to_masterlist() { # Colors for ls - yellow directories # export LS_COLORS="$LS_COLORS:di=1;33" # Install Ruby Gems to ~/gems -export GEM_HOME="$HOME/gems" # note() { @@ -375,3 +373,6 @@ ytmp3-split-to-chapters() { . "$HOME/.cargo/env" eval "$(direnv hook bash)" + +# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. +export PATH="$PATH:$HOME/.rvm/bin" |