all repos

dotfiles @ 0df8351d50ec25c7fb4530c586927b6fcd2fca59

i use rach linux btw
name last commit last update
README.md Update README.md 6 years ago 2020-04-22 00:29:33 EEST
bashrc Update bashrc 6 years ago 2020-03-19 17:24:18 EET
gitconfig Update gitconfig 6 years ago 2020-04-12 15:02:14 EEST
nanorc Create nanorc 6 years ago 2020-03-31 17:59:25 EEST
vimrc Update vimrc 6 years ago 2020-04-19 22:21:45 EEST
vimrc.server Update vimrc.server 6 years ago 2020-04-19 22:22:22 EEST

Dotfiles

Config for

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

Nano

Move settings nano

sudo mv nanorc /etc/nanorc

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'