add install script
This commit is contained in:
parent
e6c75ed341
commit
a27ce3efaa
1
init.lua
1
init.lua
@ -2,6 +2,7 @@ require ('normal.normal')
|
||||
|
||||
-- require('vscode')
|
||||
-- require('Plugin.coc')
|
||||
|
||||
require('Plugin.lualine')
|
||||
require('Plugin.Imchange')
|
||||
require('Plugin.NERDTree')
|
||||
|
18
install.sh
Executable file
18
install.sh
Executable file
@ -0,0 +1,18 @@
|
||||
if [ -f /etc/lsb-release ]; then
|
||||
echo "This linux is Ubuntu!!!"
|
||||
|
||||
apt install software-properties-common
|
||||
add-apt-repository ppa:neovim-ppa/unstable
|
||||
apt update && apt upgrade -y && apt install neovim -y
|
||||
|
||||
|
||||
curl -sL https://deb.nodesource.com/setup_lts.x | bash -
|
||||
apt update && apt upgrade -y && apt install nodejs -y
|
||||
|
||||
else
|
||||
|
||||
echo "This linux is Archlinux!!!"
|
||||
sudo pacman -S --needed --noconfirm neovim nodejs
|
||||
fi
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
sudo pacman -S neovim nodejs fuzzy python-pynvim --needed --noconfirm
|
@ -1,9 +0,0 @@
|
||||
apt install software-properties-common
|
||||
add-apt-repository ppa:neovim-ppa/stable
|
||||
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - &&\
|
||||
apt update && apt upgrade -y
|
||||
apt install -y git curl wget zsh
|
||||
apt install -y build-essential
|
||||
apt install -y python3 python3-pip
|
||||
apt install -y btop tree fzf
|
||||
apt install -y neovim nodejs
|
Loading…
Reference in New Issue
Block a user