Skip to content

Instantly share code, notes, and snippets.

@Hacksore
Created January 2, 2025 18:03
Show Gist options
  • Select an option

  • Save Hacksore/038e47a2d919f8dfcfb1288990496d16 to your computer and use it in GitHub Desktop.

Select an option

Save Hacksore/038e47a2d919f8dfcfb1288990496d16 to your computer and use it in GitHub Desktop.
Non-interactive neovim setup
#!/bin/bash
# used to test in a docker conainer
apt update -y
apt install curl git make cmake gcc fd-find ripgrep nodejs fzf -y
mkdir -p ~/.config
git clone https://github.com/Hacksore/dotfiles.git
cd dofiles
ln -s /dotfiles/.config/nvim ~/.config/nvim
curl -sLO https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz
tar xzvf nvim-linux64.tar.gz
CI=1 ./nvim-linux64/bin/nvim
@Hacksore
Copy link
Author

Hacksore commented Jan 2, 2025

im using docker to run this

docker run --platform linux/amd64 -it ubuntu /bin/bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment