Skip to content

ruyjfs/unix

Repository files navigation

unix

All you need for a advanced unix bash

1. Install Git - Needed for plugins

apt-get install -y git

2. Install VIM

apt-get install -y vim

2.1 Vim Bootstrap for pre configuration plugins essential

www.vim-bootstrap.com

3. Install zsh (Oh My Zsh)

apt-get install -y zsh

3.1 Turn zsh default for shell

chsh -s $(which zsh)

3.2 If you want change to my favorite theme go to ZSH_THEME="robbyrussel" and change to ZSH_THEME="agnoster"

vim ~/.zshrc # 

Image

3.2 If use custom theme, you have Install fonts-powerline and restart your pc

apt-get install -y fonts-powerline 
apt-get install -y python python-pip

git clone https://github.com/b-ryan/powerline-shell
cd powerline-shell
python setup.py install

3.3 Install Auto Suggestion

ZSH Auto Suggestion

4. Advanced

4. Install tmux - Tmux is like terminator but without using graphical interface, it divides the screens directly into the terminal

 apt-get install -y tmux

My hotkeys configuration - Put code of tmux.conf in this gist on your ~/.tmux.conf.

vim ~/.tmux.conf

Reloading tmux config

tmux source-file ~/.tmux.conf

Install plugins for tmux

https://github.com/tmux-plugins

Links:

Install Tilda - Is a terminal with scroll of top

sudo apt-get install tilda

Turn background vim transparent

vim ~/.vimrc.local:

highlight Normal ctermbg=none highlight NonText ctermbg=none