-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_git.sh
More file actions
executable file
·44 lines (32 loc) · 929 Bytes
/
install_git.sh
File metadata and controls
executable file
·44 lines (32 loc) · 929 Bytes
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
#!/bin/sh
#
# This script download git repositories
#
if [ ! -d src ]; then
mkdir src
fi
cd src
# ls color
git clone https://github.com/seebi/dircolors-solarized.git
# iterm color setting
git clone https://github.com/altercation/solarized.git
# nerd font (NOW NOT USED)
<< NOTICE
Now not used !!
instead, using icons-in-terminal.
BUT, nerd font has larger number of gryphs, so will come back in the future
NOTICE
git clone --depth 1 https://github.com/ryanoasis/nerd-fonts.git
# menlo for powerline (NOW NOT USED)
# → homebrewへ変更
git clone https://github.com/lxbrtsch/Menlo-for-Powerline.git
# icons in terminal
git clone https://github.com/sebastiencs/icons-in-terminal.git
# 2021/12/4
# antigen
git clone https://github.com/zsh-users/antigen.git
# z.sh
git clone https://github.com/rupa/z.git
# 2023/7/8
# conda-zsh-completion
git clone https://github.com/conda-incubator/conda-zsh-completion.git