aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/main.c b/main.c
index 6c675b1..267fe13 100644
--- a/main.c
+++ b/main.c
@@ -4,6 +4,7 @@
#include <poll.h>
#include <unistd.h>
+#include "config.h"
#include "array.h"
#include "state.h"
#include "wayland.h"
@@ -47,6 +48,8 @@ int main(int argc, char* argv[]) {
state.page_indices = array_new(size_t, 0);
state.strstr = strstr;
+ init_conf();
+
// check locale
setlocale(LC_ALL, "");
const char *encoding = nl_langinfo(CODESET);