all repos

dotfiles @ 896f511

i use rach linux btw
1 files changed, 14 insertions(+), 93 deletions(-)
Update README.md
Author: Smirnov Olexandr ss2316544@gmail.com
Committed at: 2020-05-25 22:56:05 +0300
Parent: bf1f0ea
M README.md
ยทยทยท
        1
        
        -# Dotfiles

      
        
        1
        +# Dot files

      
        
        2
        +

      
        2
        3
         Config for

      
        3
        
        -- GIT

      
        4
        
        -- VIM

      
        5
        
        -- BASH

      
        6
        
        -- TMUX

      
        7
        
        -- ZSH

      
        8
        4
         

      
        9
        
        -## Install my config

      
        10
        
        -Script

      
        11
        
        -~~~bash

      
        12
        
        -chmod +x install.sh

      
        13
        
        -./install.sh

      
        14
        
        -~~~

      
        15
        
        -

      
        16
        
        -### Or

      
        17
        
        -

      
        18
        
        -#### Git

      
        19
        
        -Move settings git

      
        20
        
        -~~~bash

      
        21
        
        -mv gitconfig ~/.gitconfig

      
        22
        
        -~~~

      
        
        5
        +- Git

      
        
        6
        +- Vim

      
        
        7
        +- Bash

      
        
        8
        +- Tmux

      
        
        9
        +- Zsh

      
        23
        10
         

      
        24
        
        -#### Vim

      
        25
        
        -Move settings vim

      
        26
        
        -~~~bash

      
        27
        
        -mv vimrc ~/.vimrc

      
        28
        
        -~~~

      
        29
        
        -Instlling [vim-plug](https://github.com/junegunn/vim-plug)

      
        30
        
        -~~~bash

      
        31
        
        -curl -fLo ~/.vim/autoload/plug.vim --create-dirs \

      
        32
        
        -    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

      
        33
        
        -~~~

      
        34
        
        -Open vim and enter

      
        35
        
        -~~~vim

      
        36
        
        -:source ~/.vimrc

      
        37
        
        -:PlugInstall

      
        38
        
        -~~~

      
        
        11
        +### Install

      
        39
        12
         

      
        40
        
        -#### BASH

      
        41
        
        -Move setting bash

      
        42
        13
         ~~~bash

      
        43
        
        -mv bashrc ~/.bashrc

      
        44
        
        -~~~

      
        45
        
        -

      
        46
        
        -#### Tmux

      
        47
        
        -Installing [Oh My TMUX](https://github.com/gpakosz/.tmux)

      
        48
        
        -~~~bash

      
        49
        
        -git clone https://github.com/gpakosz/.tmux.git

      
        50
        
        -mv ~/.tmux/.tmux.conf ~

      
        51
        
        -mv ~/.tmux/.tmux.conf.local ~

      
        52
        
        -rm -rf ~/.tmux

      
        53
        
        -~~~

      
        54
        
        -

      
        55
        
        -#### Zsh

      
        56
        
        -Installing [Oh my zsh](https://github.com/ohmyzsh/ohmyzsh)

      
        57
        
        -~~~bash

      
        58
        
        -sudo apt-get install zsh curl git

      
        59
        
        -sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

      
        60
        
        -~~~

      
        61
        
        -

      
        62
        
        -Configuring zsh

      
        63
        
        -- Theme

      
        64
        
        -~~~bash

      
        65
        
        -vim ~/.zshrc

      
        66
        
        -	ZSH_THEME="bureau"

      
        67
        
        -~~~

      
        68
        
        -- Plugins

      
        69
        
        -~~~bash

      
        70
        
        -vim ~/.zshrc

      
        71
        
        -	plugins=( autopep8 djando pip systemd debian git tmux docker ansible )

      
        72
        
        -~~~

      
        73
        
        -- Alias

      
        74
        
        -~~~bash

      
        75
        
        -vim ~/.zshrc

      
        76
        
        -	alias cls='clear'

      
        77
        
        -	alias sl='ls'

      
        78
        
        -	alias cd..='cd ..'

      
        79
        
        -	alias py='python3'

      
        80
        
        -	alias py3='python3'

      
        81
        
        -	alias py2='python2'

      
        82
        
        -	alias ipy='ipython3'

      
        83
        
        -	alias ipy3='ipython3'

      
        84
        
        -	alias ipy2='ipython2'

      
        85
        
        -~~~

      
        86
        
        -

      
        87
        
        -|  Command   |         Art          |

      
        88
        
        -|------------|----------------------|

      
        89
        
        -| cls        | clear                |

      
        90
        
        -| py2/3      | python2/3            |

      
        91
        
        -| ipy2/3     | ipython2/3           |

      
        92
        
        -| ai         | apt-get install      |

      
        93
        
        -| ar         | apt-get remove       | 

      
        94
        
        -| aplaybook  | ansible-playbook     |

      
        95
        
        -| apull      | ansible-pull         |

      
        96
        
        -| sc-stop    | systemctl stop       |

      
        97
        
        -| sc-start   | systemctl start      |

      
        98
        
        -

      
        
        14
        +git clone https://github.com/Smirnov-O/dotfiles

      
        
        15
        +cd dotfiles

      
        
        16
        +chmod +x install.sh

      
        
        17
        +./install.sh

      
        
        18
        +vim +source~/.vimrc +PlugInstall

      
        
        19
        +~~~