Rust and neovide

This commit is contained in:
John Mertz 2023-01-08 22:52:24 -05:00
parent 2cc8014a90
commit c630d25a1b
4 changed files with 11 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# vim: ft=sh # vim: ft=sh
# Vim stuff # Vim stuff
alias vim="$HOME/scripts/nvim.sh" alias vim="neovide"
alias :q="exit" alias :q="exit"
alias :wq="exit" alias :wq="exit"
alias q="exit" alias q="exit"

View File

@ -98,3 +98,5 @@ if [ -f "/run/.containerenv" ]; then
else else
source $HOME/.dotfiles/bash/bashrc.host source $HOME/.dotfiles/bash/bashrc.host
fi fi
source "$HOME/.cargo/env"

View File

@ -37,5 +37,8 @@ else
source $HOME/.dotfiles/bash/path.host source $HOME/.dotfiles/bash/path.host
fi fi
# Rust
PATH="${HOME}/.cargo/bin:$PATH"
# Export PATH # Export PATH
export PATH="$PATH" export PATH="$PATH"

View File

@ -0,0 +1,5 @@
for i in `find $HOME/scripts/distrobox -maxdepth 1`; do
if [ -d $i ]; then
PATH="$i:$PATH"
fi
done