Last active
July 15, 2022 19:21
-
-
Save lebrunthibault/05a4ecff622e2d9e649d2a586e5207b7 to your computer and use it in GitHub Desktop.
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
# install zsh | |
sudo apt-get update | |
sudo apt-get install -y curl zsh tmux vim git make terminator gitk htop python3-pip xclip wmctrl | |
sudo snap install postman | |
sudo snap install --classic heroku | |
# oh-my-zsh | |
rm -rf .oh-my-zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# zsh autosuggestions | |
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
# zsh syntax highlighting | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
sed -E -i 's/\sgit$/git zsh-autosuggestions zsh-syntax-highlighting/g' ~/.zshrc | |
# activation que pour byobu | |
# echo "set -g default-shell /usr/bin/zsh" >> ~/.byobu/.tmux.conf | |
# echo "set -g default-command /usr/bin/zsh" >> ~/.byobu/.tmux.conf | |
# vim https://github.com/amix/vimrc | |
git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime | |
sh ~/.vim_runtime/install_awesome_vimrc.sh | |
# tmux https://github.com/gpakosz/.tmux | |
cd | |
git clone https://github.com/gpakosz/.tmux.git | |
ln -s -f .tmux/.tmux.conf | |
cp .tmux/.tmux.conf.local . | |
# z https://github.com/rupa/z | |
# install node with n (https://github.com/tj/n) | |
curl -L https://git.io/n-install | bash | |
# install apache & php (https://www.vultr.com/docs/how-to-install-apache-mysql-and-php-on-ubuntu-17-04) | |
# install composer (https://getcomposer.org/download/) | |
# install postgres | |
# https://doc.ubuntu-fr.org/postgresql | |
# https://tecadmin.net/install-postgresql-server-on-ubuntu/ | |
# install gnome extension (https://extensions.gnome.org/) | |
# alt tab on workspace | |
gsettings set org.gnome.shell.app-switcher current-workspace-only true | |
# no sudo prompt in terminal (https://askubuntu.com/questions/147241/execute-sudo-without-password) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
install command :
sh -c "$(curl -fsSL https://gist.githubusercontent.com/baxson/05a4ecff622e2d9e649d2a586e5207b7/raw)"