summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/.profile (renamed from .config/profile)2
-rwxr-xr-xdev-env3
-rwxr-xr-xruns/neovim2
3 files changed, 5 insertions, 2 deletions
diff --git a/.config/profile b/.config/.profile
index c9b6ef4..6cffacf 100644
--- a/.config/profile
+++ b/.config/.profile
@@ -1,4 +1,3 @@
-eval "$(/opt/homebrew/bin/brew shellenv)"
export PLAN9=$HOME/personal/plan9
export PATH=~/personal/bin:~/.local/bin:$PATH:$HOME/go/bin:$PLAN9/bin
@@ -10,6 +9,7 @@ export shColor=green
export OS="$(uname -s)"
if [[ $OS == "Darwin" ]]; then
export comSym=
+ eval "$(/opt/homebrew/bin/brew shellenv)"
elif [[ $OS == "Linux" ]]; then
export comSym=λ
fi
diff --git a/dev-env b/dev-env
index 081a6e0..cd3f2c8 100755
--- a/dev-env
+++ b/dev-env
@@ -32,3 +32,6 @@ log "Copying Self to ~/personal/bin"
copy_file dev-env $target/bin
copy_file util $target/bin
+log "Setting Up Symlinks"
+execute ln -sf $HOME/.profile $HOME/.zprofile
+
diff --git a/runs/neovim b/runs/neovim
index c00b9b1..3c07832 100755
--- a/runs/neovim
+++ b/runs/neovim
@@ -5,7 +5,7 @@ source $HOME/personal/dotfiles/util
version="v0.10.2"
git clone -b $version https://github.com/neovim/neovim.git $target/neovim
-#sudo dnf install -y cmake gettext lua lua-libs
+sudo dnf install -y cmake gettext lua lua-libs
cd $target/neovim
make CMAKE_BUILD_TYPE=RelWithDebInfo
make CMAKE_INSTALL_PREFIX=$target install