Woefully basic, but will get better as I learn more. I obsess over organization and continue to refine the structure.
-
Move any existing files to the dotfiles folder:
$ cd ~ $ mv .bash_profile dotfiles/bash $ mv .bashrc dotfiles/bash $ mv .gitconfig dotfiles/git $ mv .gvimrc dotfiles/vim $ mv .vimrc dotfiles/vim $ mv .zprofile dotfiles/zsh $ mv .zshrc dotfiles/zsh -
Create symbolic links for any files that were moved:
$ cd ~ $ ln -s dotfiles/bash/.bash_profile .bash_profile $ ln -s dotfiles/bash/.bashrc .bashrc $ ln -s dotfiles/git/.gitconfig .gitconfig $ ln -s dotfiles/vim/.gvimrc .gvimrc $ ln -s dotfiles/vim/.vimrc .vimrc $ ln -s dotfiles/vim .vim $ ln -s dotfiles/zsh/.zprofile .zprofile $ ln -s dotfiles/zsh/.zshrc .zshrc
- A properly compiled version of VCPROMPT for your operating system is in your $PATH.