dotfiles/README.org

36 lines
1.3 KiB
Org Mode
Raw Normal View History

2021-08-26 20:52:18 +00:00
#+title: Welcome to my Dotfiles!
2021-08-26 20:50:08 +00:00
#+author: joelchrono12
#+date: <2021-08-26 Thu>
2021-08-31 23:55:34 +00:00
* Highlights
These are some of the setups you might be more interested in:
- [[./stow_home/nvim/.config/nvim/][My neovim configuration]]
2021-08-31 23:57:17 +00:00
- [[./stow_home/spectrwm/.config/spectrwm/][My spectrwm setup]]
2021-08-31 23:55:34 +00:00
- [[./stow_home/dotstow/.local/bin/dotstow][My script to stow files automatically]]
2021-08-26 20:52:18 +00:00
* Yeah I finally did it!
2021-08-26 20:50:08 +00:00
I decided to configure ~GNU Stow~ to finally keep track of the dotfiles of the programs and applications I care about!
I am also deciding to give Doom Emacs another chance.
Feel free to take a look and take whatever you like to fit your needs!
2021-08-31 23:52:16 +00:00
** Wanna learn how to use stow?
I wrote a whole tutorial on how to set it up, check it out [[https://chrono.tilde.cafe/posts/backup-your-dotfiles-using-stow.html][in my blog]]!
2021-08-31 23:53:02 +00:00
* Apply this configuration
2021-08-31 18:45:52 +00:00
My configs are done using ~stow~, so you will need to install that program on your computer, just use the default package manager in your distro.
First clone this repository:
2021-08-31 18:40:22 +00:00
#+begin_src bash
git clone https://tildegit.org/chrono/dotfiles.git
#+end_src
2021-08-31 18:45:52 +00:00
Access the ~stow_home~ directory
2021-08-31 18:40:22 +00:00
#+begin_src bash
cd dotfiles/stow_home
#+end_src
2021-08-31 18:45:52 +00:00
If you want to import everything, run this line:
2021-08-31 18:40:22 +00:00
#+begin_src bash
stow -vt ~ *
#+end_src
2021-08-31 18:45:52 +00:00
To import a specific program's configuration, just do:
2021-08-31 18:40:22 +00:00
#+begin_src bash
2021-08-31 23:31:11 +00:00
stow -vt ~ name_of_program
2021-08-31 18:40:22 +00:00
#+end_src