Skip to content

Commit

Permalink
[FIX] several things noticed on new setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gjeusel committed Jun 21, 2021
1 parent be4632a commit 3cabca3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 6 additions & 0 deletions dotfiles/zshrc_common.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ if [ ! which gls >/dev/null 2>&1 ]; then
curl -sfL git.io/antibody | sh -s - -b /usr/local/bin
fi

# Make sure to have binaries in PATH before sourcing antibody
# else tmux is not yet available and it messes up iterm2 startup
if [ -f /opt/homebrew/bin/brew ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi

# Static load, when change of plugins run:
# # antibody bundle < "$waxCraft_PATH/dotfiles/.zsh-plugins.txt" > ~/.zsh-plugins.sh
source "$HOME/.zsh-plugins.sh"
Expand Down
8 changes: 2 additions & 6 deletions wax.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,12 @@ def neovim():
assert shutil.which("nvim") is not None # check in PATH

nvim_init = ".config/nvim/init.lua"
# coc_settings = ".config/nvim/coc-settings.json"
nvim_snippets = "~/.config/nvim/mysnippets"
# plugin = "~/.config/nvim/plugin"
lua = "~/.config/nvim/lua"
lua = ".config/nvim/lua"
nvim_snippets = ".config/nvim/mysnippets"

relative_paths = [
nvim_init,
# coc_settings,
nvim_snippets,
# plugin,
lua,
]
create_symlinks_robust(
Expand Down

0 comments on commit 3cabca3

Please sign in to comment.