Initial commit
This commit is contained in:
commit
56ed33c8f7
19 changed files with 151 additions and 0 deletions
2
setup/programs/others/nerd-font.sh
Normal file
2
setup/programs/others/nerd-font.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
brew tap homebrew/cask-fonts
|
||||
brew install font-hack-nerd-font
|
||||
1
setup/programs/others/oh-my-zsh.sh
Normal file
1
setup/programs/others/oh-my-zsh.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||
1
setup/programs/others/powerlevel10k.sh
Normal file
1
setup/programs/others/powerlevel10k.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
|
||||
10
setup/programs/others/python3-libs/packages.sh
Normal file
10
setup/programs/others/python3-libs/packages.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
echo "Upgrading python3-pip"
|
||||
python3 -m pip install --upgrade pip
|
||||
|
||||
function install {
|
||||
echo "Installing: ${1}..."
|
||||
pip3 install ${1}
|
||||
}
|
||||
|
||||
|
||||
python_packages = (numpy matplotlib scipy seaborn django torch torchvision torchaudio networkx Faker torch-cluster torch-geometric torch-scatter torch-sparse torch-spline-conv tqdm yapf yt-dlp scikit-learn scikit-image pandas)
|
||||
4
setup/programs/others/zsh-plugins.sh
Normal file
4
setup/programs/others/zsh-plugins.sh
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
echo "Installing zsh-autosuggestions .."
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||
echo "Installing zsh-syntax-highlighting .."
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
|
||||
Loading…
Add table
Add a link
Reference in a new issue