Skip to content

Instantly share code, notes, and snippets.

@bdarcus
Last active February 11, 2023 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdarcus/76fda3277e37c927cfe756a4f53d889a to your computer and use it in GitHub Desktop.
Save bdarcus/76fda3277e37c927cfe756a4f53d889a to your computer and use it in GitHub Desktop.
simple shell script to update nvim on linux
#!/usr/bin/env bash
# https://m0wer.github.io/memento/computer_science/gnu_linux/neovim/
curl -sSL "https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz" | \
tar -C "${HOME}/.local" -xz --strip-components=1 -f -
# doesn't appears this updates much, and not tied to nvim releases, so maybe remove?
pip install --upgrade pynvim
nvim -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment