Skip to content

Commit

Permalink
✨ add python asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
yachi committed Dec 10, 2019
1 parent 25a6d94 commit 8654ec3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion init.fish
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
#!/usr/bin/env fish

# install asdf python
asdf plugin-add python
set python_version (asdf list-all python | rg '^\d\.\d\.\d$' | tail -n 1)
asdf install python $python_version
asdf global python $python_version
python install neovim

# install asdf nodejs
asdf plugin-add nodejs
set nodejs_version (asdf list-all nodejs | tail -n 1)
asdf install nodejs $nodejs_version
asdf global nodejs $nodejs_version
sudo pacman -S --noconfirm yarn
yarn global add neovim

# install vim plug
test -f ~/.local/share/nvim/site/autoload/plug.vim; or curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
Expand Down

0 comments on commit 8654ec3

Please sign in to comment.