all repos

dotfiles @ bf1f0ea9cefadaaee72aba88c560e3f1e2ba15bf

i use rach linux btw
name last commit last update
README.md Updata file 6 years ago 2020-05-20 00:47:31 EEST
bashrc Updata bashrc, vimrc 6 years ago 2020-05-20 21:29:02 EEST
gitconfig Add github user in gitconfig 6 years ago 2020-05-25 22:52:10 EEST
gitignore_global Create gitignore_global 6 years ago 2020-05-18 22:28:48 EEST
install.sh Update install.sh and add zsh, tmux config 6 years ago 2020-05-25 22:48:43 EEST
tmux.conf Update install.sh and add zsh, tmux config 6 years ago 2020-05-25 22:48:43 EEST
tmux.conf.local Update install.sh and add zsh, tmux config 6 years ago 2020-05-25 22:48:43 EEST
vimrc Updata bashrc, vimrc 6 years ago 2020-05-20 21:29:02 EEST
zshrc Update install.sh and add zsh, tmux config 6 years ago 2020-05-25 22:48:43 EEST

Dotfiles

Config for

Install my config

Script

chmod +x install.sh
./install.sh

Or

Git

Move settings git

mv gitconfig ~/.gitconfig

Vim

Move settings vim

mv vimrc ~/.vimrc

Instlling vim-plug

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Open vim and enter

:source ~/.vimrc
:PlugInstall

BASH

Move setting bash

mv bashrc ~/.bashrc

Tmux

Installing Oh My TMUX

git clone https://github.com/gpakosz/.tmux.git
mv ~/.tmux/.tmux.conf ~
mv ~/.tmux/.tmux.conf.local ~
rm -rf ~/.tmux

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 djando pip systemd debian git tmux docker ansible )
vim ~/.zshrc
	alias cls='clear'
	alias sl='ls'
	alias cd..='cd ..'
	alias py='python3'
	alias py3='python3'
	alias py2='python2'
	alias ipy='ipython3'
	alias ipy3='ipython3'
	alias ipy2='ipython2'
Command Art
cls clear
py2/3 python2/3
ipy2/3 ipython2/3
ai apt-get install
ar apt-get remove
aplaybook ansible-playbook
apull ansible-pull
sc-stop systemctl stop
sc-start systemctl start