Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 579 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 579 Bytes

dotfiles

Cloning

git clone -r https://github.com/mstabrin/dotfiles
cd dotfiles

or if -r is not provided:

git clone https://github.com/mstabrin/dotfiles
cd dotfiles
git submodule init
git submodule update

Installation

Assuming one is inside the dotfiles directory

bash ./install.sh

Install vimrc

Assuming one is inside the dotfiles directory

echo "export DOTFILES=$(realpath .)" >> ${HOME}/.bashrc
echo "alias vim='vim -u "'${DOTFILES}'"/vimrc'" >> ${HOME}/.bashrc
source ${HOME}/.bashrc
vim +PluginInstall +qall