rach linux
Find a file
Smirnov Oleksandr ba110c57d5
Update README.md
2020-03-18 18:13:48 +02:00
bashrc first commit 2020-03-18 12:35:33 +02:00
gitconfig first commit 2020-03-18 12:35:33 +02:00
README.md Update README.md 2020-03-18 18:13:48 +02:00
vimrc first commit 2020-03-18 12:35:33 +02:00

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'