This commit is contained in:
root 2020-11-05 00:27:01 +01:00
parent bcd52055e7
commit ff9d16abb5
6 changed files with 9 additions and 17 deletions

3
init-neovim.sh Normal file → Executable file
View file

@ -7,10 +7,7 @@ cat <<EOF >$HOME/.config/nvim/init.vim
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'scrooloose/nerdtree', { } Plug 'scrooloose/nerdtree', { }
Plug 'tpope/vim-vinegar'
Plug 'tpope/vim-fugitive'
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
Plug 'mxw/vim-jsx'
Plug 'scrooloose/nerdcommenter' Plug 'scrooloose/nerdcommenter'
Plug 'NLKNguyen/papercolor-theme' Plug 'NLKNguyen/papercolor-theme'
call plug#end() call plug#end()

0
init-tmux.sh Normal file → Executable file
View file

0
init-zsh.sh Normal file → Executable file
View file

14
install-basics.sh Normal file → Executable file
View file

@ -2,17 +2,3 @@
apt update -y apt update -y
apt install sudo neovim zsh git tmux -y apt install sudo neovim zsh git tmux -y
# install node
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
apt update -y
apt install nodejs -y
node --version
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn
# install pm2
yarn global add pm2 --prefix /usr/local

0
install-nginx.sh Normal file → Executable file
View file

9
install-node.sh Executable file
View file

@ -0,0 +1,9 @@
# install node
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
apt update -y
apt install nodejs -y
node --version
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn