til/Scripts/debian.sh

28 lines
1003 B
Bash
Raw Normal View History

2021-02-18 04:06:58 +00:00
#!/usr/bin/env bash
2021-02-18 09:25:14 +00:00
sudo apt install \
build-essential \
2021-02-18 04:06:58 +00:00
zsh \
curl wget git \
2021-02-18 08:58:27 +00:00
neovim tmux \
2021-02-18 04:06:58 +00:00
exa fd-find ripgrep \
2021-02-18 09:25:14 +00:00
openssh-server openssh-client \
neofetch
2021-02-18 04:06:58 +00:00
# https://github.com/ohmyzsh/ohmyzsh/
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# https://github.com/romkatv/powerlevel10k#oh-my-zsh
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k
2021-02-18 08:58:27 +00:00
# https://github.com/junegunn/fzf#using-git
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install
2021-02-18 09:02:55 +00:00
# https://github.com/junegunn/vim-plug
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'
2021-02-18 09:09:45 +00:00
# https://golangci-lint.run/usage/install/#local-installation
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.37.0