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 stuff
alias vim="$HOME/scripts/nvim.sh"
alias vim="neovide"
alias :q="exit"
alias :wq="exit"
alias q="exit"

View File

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

View File

@ -37,5 +37,8 @@ else
source $HOME/.dotfiles/bash/path.host
fi
# Rust
PATH="${HOME}/.cargo/bin:$PATH"
# Export 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