Skip to content
This repository has been archived by the owner. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 583 Bytes

File metadata and controls

28 lines (20 loc) · 583 Bytes

Install

To Configure brew and OSX

curl -L https://github.com/andrei4ka/dotfiles/raw/master/osx_install.sh | /bin/bash

To install or update vim

curl -L https://github.com/andrei4ka/dotfiles/raw/master/vim_install.sh | /bin/bash

To install dotfiles

curl -L https://github.com/andrei4ka/dotfiles/raw/master/dot_install.sh | /bin/bash

To launch tmux by default add the following lines into .bashrc

if [[ "$TERM" != "screen-256color" ]]; then
    tmux -2 attach-session -t "$USER" || tmux -2 new-session -s "$USER" 
    exit
fi