Last active
October 14, 2024 13:55
-
-
Save k1nxx/488114b55b7f24765a085bdd432da35b to your computer and use it in GitHub Desktop.
install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# opensuse | |
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc | |
echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ntype=rpm-md\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" |sudo tee /etc/zypp/repos.d/vscode.repo > /dev/null | |
sudo zypper refresh | |
sudo zypper install code | |
# sdkman | |
sudo zypper in zip | |
curl -s "https://get.sdkman.io" | bash | |
source "~/.sdkman/bin/sdkman-init.sh" | |
sdk install java | |
sdk install maven | |
sdk install gradle | |
# homebrew | |
sudo zypper in git | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
brew install nvm | |
brew install bat | |
brew install tmux | |
brew install fzf | |
brew install zoxide | |
brew install ripgrep | |
brew install entr | |
brew install lsd | |
# zsh | |
# brew install zsh | |
sudo zypper in zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
# terminator | |
#sudo zypper in terminator | |
flatpak install flathub org.wezfurlong.wezterm | |
# antigen | |
curl -L git.io/antigen > antigen.zsh | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-history-substring-search | |
# setup fonts | |
sudo zypper addrepo https://download.opensuse.org/repositories/home:GNorth/openSUSE_Tumbleweed/home:GNorth.repo | |
sudo zypper refresh | |
sudo zypper install nerd-fonts-jetbrains-mono | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment