mirror of https://github.com/WolfeCub/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
5 years ago | |
---|---|---|
.travis | 5 years ago | |
X | ||
bin/bin | ||
bspwm/.config | ||
emacs/.emacs.d | 5 years ago | |
fish/.config/fish | ||
hammerspoon/.hammerspoon | ||
herbstluftwm/.config/herbstluftwm | ||
i3/.config | ||
kak/.config/kak | ||
ncmpcpp/.ncmpcpp | 5 years ago | |
polybar/.config/polybar | ||
terminator/.config/terminator | ||
tmux | ||
vim | ||
windowchef/.config | ||
zsh | ||
.gitignore | 5 years ago | |
.gitmodules | ||
.travis.yml | 5 years ago | |
README.org | 5 years ago | |
TODO.org | 5 years ago | |
bar.sh | ||
install.sh |
README.org
dotfiles
Here are my personal dotfiles.
- zsh - shell
- emacs - text editor of choice (literate config can be found here)
- vim/neovim - when SSHed or on a different computer
-
i3- window manager (linux)
- hammerspoon - window manager when I happen to be on osx (which is very very rare these days)
Installing
My dotfiles are managed using GNU Stow. This makes it easy to add and remove modules (and their symbolic links).
One Liner
This one line will clone my dotfiles and begin the installer.
curl https://raw.githubusercontent.com/WolfeCub/dotfiles/master/install.sh | bash -s -- -g <& 1
Manual Installation
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.
git clone https://github.com/WolfeCub/dotfiles.git
cd dotfiles
git submodules init && git submodules update
stow zsh
stow emacs
...