1 files changed,
55 insertions(+),
1 deletions(-)
Author:
Smirnov Oleksandr
50584123+Smirnov-O@users.noreply.github.com
Committed by:
GitHub
noreply@github.com
Committed at:
2020-03-18 18:13:10 +0200
Parent:
5af6e40
M
README.md
ยทยทยท 1 -# dotfiles 1 +# Dotfiles 2 + 3 + 4 +Config for 5 +- GIT 6 +- VIM 7 +- BASH 8 +- TMUX 9 +- ZSH 10 + 11 +####Vim 12 +Instlling [vim-plug](https://github.com/junegunn/vim-plug) 13 +~~~bash 14 +curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ 15 + https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 16 +~~~ 17 + 18 +####Tmux 19 +Installing [OhMyTMUX](https://github.com/gpakosz/.tmux) 20 +~~~bash 21 +git clone https://github.com/gpakosz/.tmux.git 22 +ln -s -f .tmux/.tmux.conf 23 +cp .tmux/.tmux.conf.local . 24 +~~~ 25 + 26 +####Zsh 27 +Installing [Oh my zsh](https://github.com/ohmyzsh/ohmyzsh) 28 +~~~bash 29 +sudo apt-get install zsh curl git 30 +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 31 +~~~ 32 + 33 +Configuring zsh 34 +- Theme 35 +~~~bash 36 +vim ~/.zshrc 37 + ZSH_THEME="bureau" 38 +~~~ 39 +- Plugins 40 +~~~bash 41 +vim ~/.zshrc 42 + plugins=( autopep8 django pip git systemd debian ) 43 +~~~ 44 +- Alias 45 +~~~bash 46 +vim ~/.zshrc 47 + alias cls='clear' 48 + alias sl='ls' 49 + alias cd..='cd ..' 50 + alias py='python3' 51 + alias py3='python3' 52 + alias py2='python2' 53 + alias gor='go run' 54 + alias gob='go build' 55 +~~~