Improve deployment instructions in README
This commit is contained in:
parent
6efc280907
commit
00973f2a92
28
README.org
28
README.org
|
@ -1,16 +1,26 @@
|
||||||
* Dotfiles
|
* 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
|
The deployment is done via GNU stow, which can be done in a few steps:
|
||||||
configuration file with the corresponding folder hierarchy, in your home
|
|
||||||
folder.
|
1. Clone the repository
|
||||||
For example:
|
|
||||||
|
#+BEGIN_SRC sh
|
||||||
|
git clone https://git.coolneng.duckdns.org/coolneng/dotfiles ~/.dotfiles
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
2. Change the working directory
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
cd vim
|
cd ~/.dotfiles
|
||||||
cp .vimrc ~/.vimrc
|
#+END_SRC
|
||||||
cp -R .vim ~/.vim
|
|
||||||
|
3. Execute stow on all the folders
|
||||||
|
|
||||||
|
#+BEGIN_SRC sh
|
||||||
|
stow *
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
Loading…
Reference in New Issue