blob: 8e0f5186a7989e859b6297a77d4b53d507d09fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# dotfiles
This repository contains my configuration files.
Whenever possible, I use tools that follow the Unix philosophy.
I like *vim* for text editing,
and I find it very convenient to use tools with *vi* keybindings:
+ Window manager: **i3**
+ File manager: **vifm**
+ Browser: **qutebrowser**
+ PDF viewer: **zathura**
+ Email client: **mutt**
# Management
Deploy with stow:
```bash
find . -mindepth 1 -maxdepth 1 -printf "%P\\0" | grep -zvFf .stowignore | \
xargs -0 stow -t $HOME --no-folding
```
Personal files (`mutt` aliases, `vim` snippets, `tmuxinator` sessions, etc.) are located in a different git repository and stowed normally, with folding.
|