LunarVim/utils/docker/script.sh

24 lines
713 B
Bash
Raw Normal View History

2021-07-31 06:34:01 +02:00
#!/bin/bash
# Updating the package list
apt-get update
# Installing dependencies
apt-get -y install tzdata sudo git nodejs npm git ripgrep fzf ranger curl fonts-hack-ttf
pip3 install ueberzug neovim-remote
npm install tree-sitter-cli neovim
# Installing Neovim
mkdir -p /tmp/neovim
cd /tmp/neovim || exit
curl -L -o nvim.appimage https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage --appimage-extract
mv squashfs-root /usr/local/neovim
ln -s /usr/local/neovim/usr/bin/nvim /usr/bin/nvim
rm ./nvim.appimage
# Installing LunarVim
2021-08-04 21:21:00 +02:00
LVBRANCH=master bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh)