Viewing file on branch master
| / | src | config.c |
| 1 | #include <stdbool.h> |
| 2 | |
| 3 | #include "config.h" |
| 4 | |
| 5 | config_t config = { |
| 6 | .longmode = true, |
| 7 | .longinline = true, |
| 8 | .dots = true, |
| 9 | .humansize = true, |
| 10 | |
| 11 | .dir_sortby = DIR_SORTBY_NAME, |
| 12 | .dir_sort = DIR_SORT_INCREASING, |
| 13 | .dir_sort_dirs = DIR_SORT_DIRS_FIRST, |
| 14 | |
| 15 | .opener = "xdg-open", |
| 16 | }; |
| 17 |