Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arch-fan/neovim-raspberry
Steps for building/installing neovim newer versions on Raspberry Pi (64-bit). Can also be used on any ARM device which accepts DEB.
https://github.com/arch-fan/neovim-raspberry
arm docker installer neovim raspberry-pi
Last synced: 9 days ago
JSON representation
Steps for building/installing neovim newer versions on Raspberry Pi (64-bit). Can also be used on any ARM device which accepts DEB.
- Host: GitHub
- URL: https://github.com/arch-fan/neovim-raspberry
- Owner: arch-fan
- Created: 2023-11-17T16:30:34.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-01T19:05:56.000Z (5 months ago)
- Last Synced: 2024-08-01T21:30:03.827Z (5 months ago)
- Topics: arm, docker, installer, neovim, raspberry-pi
- Language: Shell
- Homepage:
- Size: 24.4 KB
- Stars: 9
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neovim-raspberry
Repo for installing neovim building it from source with Docker.
## Remote install
```bash
curl -fsSL https://s.archfan.com/nvim-install | bash # -s "v0.9.0"
```## Description
This repository provides a script for installing Neovim on a Raspberry Pi (64-bit). It uses Docker to build and install Neovim, ensuring compatibility with the Raspberry Pi architecture.
App is installed via `apt`, for removing neovim just run `apt remove -y neovim`.## Prerequisites
- Raspberry Pi with a 64-bit OS.
- Docker installed on the Raspberry Pi.## Installation
To install the latest version of Neovim, simply run the following command:
```sh
chmod +x ./install.sh && ./install.sh
```If you want to install a specific version of Neovim, pass the version number as an argument:
```sh
./install.sh v0.9.0
```> [!NOTE]
>The script defaults to the latest version of Neovim if no version argument is provided. If an invalid version is specified, the script will fail with an error message.