Skip to content

Instantly share code, notes, and snippets.

@ilhnctn
Last active January 25, 2018 13:50
Show Gist options
  • Save ilhnctn/25a554a3ce9fdc3e1cad to your computer and use it in GitHub Desktop.
Save ilhnctn/25a554a3ce9fdc3e1cad to your computer and use it in GitHub Desktop.
Installing Ubuntu

Terminal/Emilator Kurulumu

Mac-iTerm'e alışıksanız Terminator daha uyumludur.

sudo apt-get install guake

# Oh-my-god :)
apt-get install zsh
apt-get install git-core # if not installed
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
(Either restart the computer or simply kill the terminal process. Kudos to @tsabat for => https://gist.github.com/tsabat/1498393)

~/.zshrc Ayarlar

$ cd ~
$ vim .zshrc

plugins=( ) kaydını bulup aşağıdakiler ile değiştirin (daha fazlası için plugins sayfasına bakabilirsiniz.

plugins=(
  git python pip docker npm node sublime kubectl kops redis-cli docker-machine django docker-compose
)

Plugins listesine aldığınız araç/dillerin autocoplete desteğine sahipsiniz :)

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