From 619656977cee0ba541c7494a0ea7371755c443f8 Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 3 Feb 2022 14:24:17 -0500 Subject: [PATCH] Update readme file --- README.md | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 27ef622..18c1606 100644 --- a/README.md +++ b/README.md @@ -1 +1,46 @@ -# dotfiles \ No newline at end of file +# Personal Dotfiles + +Personal Dotfiles +------------------ + +See: https://www.atlassian.com/git/tutorials/dotfiles for an article explaining how this is managed. + + +Installation: + +1) Clone this repository into a "bare" repository in $HOME/.dotfiles + +~~~ +git clone --bare https://github.com/anthonyoteri/dotfiles.git $HOME/.dotfiles +~~~ + +2) Define an alias in the current scope + +~~~ +alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' +~~~ + +3) Checkout the actual content from the bare repository + +~~~ +config checkout +~~~ + +Note: The above command may fail with a message about untracked files being overwritten, you must manually handle these conflicts. + +4) Set the showUntrackedFiles flag on this specific repository to prevent ALL files from being shown as untracked + +~~~ +config config --local status.showUntrackedFiles no +~~~ + +## Post installation tasks + +### Configuring NeoVIM + +~~~ bash +pacman -S neovim-plug +pip install neovim jade +vim + PlugInstall +PlugClean +gq +~~~ +