diff --git a/bash/.bashrc b/bash/.bashrc index 82e4214..2a16911 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -87,7 +87,8 @@ fi # Add rustup and the standard rust tooling to the path . "$HOME/.cargo/env" +# set path so it includes fly bin if it exists if [ -d "$HOME/.fly" ] ; then - export FLYCTL_INSTALL="$HOME/.fly" - export PATH="$FLYCTL_INSTALL/bin:$PATH" + FLYCTL_INSTALL="$HOME/.fly" + PATH="$FLYCTL_INSTALL/bin:$PATH" fi diff --git a/bash/.profile b/bash/.profile index e0d90c5..49e1098 100644 --- a/bash/.profile +++ b/bash/.profile @@ -31,3 +31,9 @@ fi if [ -d "$HOME/.cabal/bin" ]; then PATH="$HOME/.cabal/bin:$PATH" fi + +# set path so it includes fly bin if it exists +if [ -d "$HOME/.fly/bin" ]; then + export FLYCTL_INSTALL="/home/nicole/.fly" + PATH="$FLYCTL_INSTALL/bin:$PATH" +fi diff --git a/nvim/.config/nvim/spell/en.utf-8.add b/nvim/.config/nvim/spell/en.utf-8.add new file mode 100644 index 0000000..5186b8a --- /dev/null +++ b/nvim/.config/nvim/spell/en.utf-8.add @@ -0,0 +1,2 @@ +draft +lapdesk diff --git a/nvim/.config/nvim/spell/en.utf-8.add.spl b/nvim/.config/nvim/spell/en.utf-8.add.spl new file mode 100644 index 0000000..a777e96 Binary files /dev/null and b/nvim/.config/nvim/spell/en.utf-8.add.spl differ