Skip to content

Instantly share code, notes, and snippets.

@lebrunthibault
Last active July 15, 2022 19:21
Show Gist options
  • Save lebrunthibault/05a4ecff622e2d9e649d2a586e5207b7 to your computer and use it in GitHub Desktop.
Save lebrunthibault/05a4ecff622e2d9e649d2a586e5207b7 to your computer and use it in GitHub Desktop.
# 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)
@lebrunthibault
Copy link
Author

lebrunthibault commented Sep 20, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment