Created
August 25, 2022 13:18
-
-
Save eduardoarandah/f5b6f2de2591511a275c0b6e759481c4 to your computer and use it in GitHub Desktop.
neovim is your config REALLY portable?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run ubuntu in docker | |
docker run -it --rm --name myubuntu ubuntu:latest | |
## requirements | |
apt update | |
apt -y install software-properties-common dirmngr apt-transport-https lsb-release ca-certificates build-essential git ripgrep nodejs npm | |
## add neovim | |
add-apt-repository ppa:neovim-ppa/stable -y | |
apt update | |
apt install neovim -y | |
## clone config | |
git clone https://github.com/eduardoarandah/nvimrc-public.git /root/.config/nvim | |
## run | |
nvim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment