rach linux
Find a file
Smirnov Oleksandr 7bd6ccf797
Update README.md
2020-03-31 18:00:00 +03:00
bashrc Update bashrc 2020-03-19 17:24:18 +02:00
gitconfig first commit 2020-03-18 12:35:33 +02:00
nanorc Create nanorc 2020-03-31 17:59:25 +03:00
README.md Update README.md 2020-03-31 18:00:00 +03:00
vimrc first commit 2020-03-18 12:35:33 +02:00

Dotfiles

Config for

  • GIT
  • VIM
  • NANO
  • 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 pip django sublime systemd debian git tmux  )
  • 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'