|
3 years ago | |
---|---|---|
X | 3 years ago | |
bin/bin | 3 years ago | |
bspwm/.config | 3 years ago | |
emacs/.emacs.d | 3 years ago | |
fish/.config/fish | 3 years ago | |
hammerspoon/.hammerspoon | 3 years ago | |
herbstluftwm/.config/herbstluftwm | 3 years ago | |
i3/.config | 3 years ago | |
kak/.config/kak | 3 years ago | |
ncmpcpp/.ncmpcpp | 3 years ago | |
polybar/.config/polybar | 3 years ago | |
terminator/.config/terminator | 3 years ago | |
tmux | 3 years ago | |
vim | 3 years ago | |
windowchef/.config | 3 years ago | |
zsh | 3 years ago | |
.gitignore | 3 years ago | |
.gitmodules | 3 years ago | |
.travis.yml | 3 years ago | |
README.org | 3 years ago | |
TODO.org | 3 years ago | |
bar.sh | 3 years ago | |
install.sh | 3 years ago |
#+html:
My dotfiles are managed using GNU Stow. This makes it easy to add and remove modules (and their symbolic links).
This one line will clone my dotfiles and begin the installer.
#+BEGIN_SRC bash curl https://raw.githubusercontent.com/WolfeCub/dotfiles/master/install.sh | bash -s -- -g <& 1 #+END_SRC
If you don't want to use the one liner or the install script.
You can install each module individually using stow [name]
as shown below.
This allows you to only use the modules that you want.
#+BEGIN_SRC bash git clone https://github.com/WolfeCub/dotfiles.git cd dotfiles git submodules init && git submodules update stow zsh stow emacs ... #+END_SRC