all repos

dotfiles @ 99c3ec6

my dotfiles
mode size name
-rw-r--r-- 996 README.md
-rw-r--r-- 892 bashrc
-rw-r--r-- 242 gitconfig
-rw-r--r-- 1650 vimrc

Dotfiles

Config for

  • GIT
  • VIM
  • BASH
  • TMUX
  • ZSH

####Vim Instlling vim-plug

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

####Tmux Installing OhMyTMUX

git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
cp .tmux/.tmux.conf.local .

####Zsh Installing Oh my zsh

sudo apt-get install zsh curl git
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Configuring zsh

  • Theme
vim ~/.zshrc
	ZSH_THEME="bureau"
  • Plugins
vim ~/.zshrc
	plugins=( autopep8 django pip git systemd debian )
  • Alias
vim ~/.zshrc
	alias cls='clear'
	alias sl='ls'
	alias cd..='cd ..'
	alias py='python3'
	alias py3='python3'
	alias py2='python2'
	alias gor='go run'
	alias gob='go build'