jorgeramos / dotfiles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dotfiles

Bash

Clone the contents of this repo into: ~/dotfiles:

git clone git@github.com:sarink/dotfiles.git ~/dotfiles

Add the following to ~/.bash_profile

# Loads dotfiles (customize the list below accordingly)
for file in ~/dotfiles/.{base,git-completion,tmux-completion}; do
  [ -r "$file" ] && source "$file"
done
unset file

Vim

Create a symbolic link for the vimrc config

ln -s ~/dotfiles/.vimrc ~/.vimrc

Clone vundle

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

Open vim, run :VundleInstall to install vim plugins (official vundle docs

Tmux

Create a symbolic link for the tmux config

ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf

Clone tmux plugin manager into: ~/dotfiles/.tmux/plugins/tpm

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

Open tmux, run <prefix>I (probably ctrl-aI) to install tmux plugins (official tpm docs

About


Languages

Language:Shell 71.9%Language:Vim Script 28.1%