federico-lox / dotfiles

Personal tool configuration files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Configuration for Bash and Vim

Hello traveller, you've reached the home of my personal Bash, Git, Emacs and Vim setup.

Feel free to grab anything you might find useful and don't be afraid to send questions over.

Farewell!

SETUP

Run the following commands:

Git

#Unix
ln -s "`pwd`"/gitconfig ~/.gitconfig
ln -s "`pwd`"/gitignore ~/.gitignore_global
#Windows
mklink /H %USERPROFILE%\.gitconfig gitconfig
mklink /H %USERPROFILE%\.gitignore_global gitignore

Bash

#Unix
ln -s "`pwd`"/bash_profile ~/.bash_profile
#Windows
mklink /H %USERPROFILE%\.bash_profile bash_profile

Emacs

#Unix
ln -s "`pwd`"/emacs ~/.emacs.d
#Windows
mklink /J %USERPROFILE%\.emacs.d emacs

Vim

# Unix
ln -s "`pwd`"/vimrc ~/.vimrc
# Windows
mklink /H %USERPROFILE%\.vimrc vimrc

# Unix
ln -s "`pwd`"/vim ~/.vim
# Windows
mklink /J %USERPROFILE%\.vim vim
#both
git clone git@github.com:gmarik/vundle.git vim/bundle/vundle
vim +BundleInstall +qall

UPDATE

To keep the Vim plugins up-to-date just run:

vim +BundleUpdate +qall

About

Personal tool configuration files


Languages

Language:Emacs Lisp 52.2%Language:Vim Script 26.6%Language:Shell 21.1%Language:Batchfile 0.1%