-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.sh
More file actions
executable file
·59 lines (38 loc) · 1.33 KB
/
configure.sh
File metadata and controls
executable file
·59 lines (38 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/bash
set -e
initLocation=$(pwd)
PLUG=~/.zsh/plugins
SOURCE=~/source/git
CONFIG=~/.config
rm -rf $PLUG
rm -rf $CONFIG
mkdir -p $PLUG
cd $PLUG
plugins="zsh-users/zsh-autosuggestions zsh-users/zsh-completions zsh-users/zsh-syntax-highlighting eendroroy/alien"
for plugin in $plugins; do
git clone "https://github.com/$plugin";
done
cd $PLUG/alien/libs
git clone https://github.com/eendroroy/promptlib-zsh.git promptlib
git clone https://github.com/chrissicool/zsh-256color.git
git clone https://github.com/mafredri/zsh-async.git
cd $initLocation
cp ./files/.zshrc ~/.zshrc
mkdir -p $CONFIG
cd $CONFIG
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
git clone git@github.com:Strik3ria/nvim.git
nvim +PlugInstall
/usr/bin/python3 -m pip install pynvim
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py
/usr/bin/python2 -m pip install pynvim
sudo npm i -g npm
sudo npm i -g typescript-language-server typescript neovim yarn
sudo yarn global add yaml-language-server
mkdir -p $SOURCE
rm -rf ~/Downloads/*night* ~/Downloads/node*
git config --global user.name "Strik3ria"
git config --global user.email "robert_coones@zohomail.com"
git config --global core.editor nvim