From 00973f2a92f6dde13ada56876e8753c6a3f31b12 Mon Sep 17 00:00:00 2001 From: coolneng Date: Tue, 22 Sep 2020 01:03:16 +0200 Subject: [PATCH] Improve deployment instructions in README --- README.org | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/README.org b/README.org index d0602d1..b667147 100644 --- a/README.org +++ b/README.org @@ -1,16 +1,26 @@ * Dotfiles -** Compilation of my essential configs, managed with GNU stow +Compilation of my personal dotfiles, you will need to tweak them for your system. +I try to comment as many files as possible. -Every configuration file is categorized, inside a parent folder. +** Deployment -If you want to deploy them without using GNU stow, copy the -configuration file with the corresponding folder hierarchy, in your home -folder. -For example: +The deployment is done via GNU stow, which can be done in a few steps: + +1. Clone the repository + +#+BEGIN_SRC sh +git clone https://git.coolneng.duckdns.org/coolneng/dotfiles ~/.dotfiles +#+END_SRC + +2. Change the working directory #+BEGIN_SRC sh - cd vim - cp .vimrc ~/.vimrc - cp -R .vim ~/.vim +cd ~/.dotfiles +#+END_SRC + +3. Execute stow on all the folders + +#+BEGIN_SRC sh +stow * #+END_SRC