Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/richin13/asdf-neovim
Neovim plugin for asdf version manager (https://github.com/asdf-vm/asdf) and mise (https://mise.jdx.dev/)
https://github.com/richin13/asdf-neovim
asdf-plugin mise neovim
Last synced: 2 months ago
JSON representation
Neovim plugin for asdf version manager (https://github.com/asdf-vm/asdf) and mise (https://mise.jdx.dev/)
- Host: GitHub
- URL: https://github.com/richin13/asdf-neovim
- Owner: richin13
- License: mit
- Created: 2019-10-15T02:05:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-03T15:36:52.000Z (8 months ago)
- Last Synced: 2024-11-08T23:22:34.818Z (3 months ago)
- Topics: asdf-plugin, mise, neovim
- Language: Shell
- Homepage:
- Size: 29.3 KB
- Stars: 97
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asdf-neovim
[![Build Status](https://github.com/richin13/asdf-neovim/workflows/Main%20workflow/badge.svg)](https://github.com/richin13/asdf-neovim/workflows/Main%20workflow/badge.svg)
Neovim plugin for [asdf-vm](https://github.com/asdf-vm/asdf) & [mise](https://mise.jdx.dev/) (fka rtx)
## Install
```bash
asdf plugin add neovim
```## Use
```bash
# Install a pre-compiled release
asdf install neovim 0.4.4 # tag of specific version
asdf install neovim nightly # nightly tag
asdf install neovim stable # stable tag# Compile from source
asdf install neovim ref:master # install from a branch
asdf install neovim ref:f0eb3ca9163ad10753fbb75558b900a539f76e0d # or a commit
```To "update" your `stable`, `nightly`, or a ref installation, you must first un-install and then re-install the desired version. You can create a few aliases to make this easier.
```bash
alias update-nvim-stable='asdf uninstall neovim stable && asdf install neovim stable'
alias update-nvim-nightly='asdf uninstall neovim nightly && asdf install neovim nightly'
alias update-nvim-master='asdf uninstall neovim ref:master && asdf install neovim ref:master'
```Check asdf readme for instructions on how to install & manage versions of Neovim.
## License
See `LICENSE`