all repos

dotfiles @ 4868331

i use rach linux btw
name last commit last update
README.md Update README.md 6 years ago 2020-03-25 17:53:02 EET
bashrc Update bashrc 6 years ago 2020-03-19 17:24:18 EET
gitconfig first commit 6 years ago 2020-03-18 12:35:33 EET
vimrc first commit 6 years ago 2020-03-18 12:35:33 EET

Dotfiles

Config for

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

vim ~/.zshrc
	ZSH_THEME="bureau"
vim ~/.zshrc
	plugins=( autopep8 pip django sublime systemd debian git tmux  )
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'