aboutsummaryrefslogtreecommitdiff
path: root/users/zigotica/zigotica.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/zigotica/zigotica.h')
-rw-r--r--users/zigotica/zigotica.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/users/zigotica/zigotica.h b/users/zigotica/zigotica.h
new file mode 100644
index 000000000..e9ff5ff16
--- /dev/null
+++ b/users/zigotica/zigotica.h
@@ -0,0 +1,51 @@
1/* Copyright 2020 Sergi Meseguer <zigotica@gmail.com>
2This program is free software: you can redistribute it and/or modify
3it under the terms of the GNU General Public License as published by
4the Free Software Foundation, either version 2 of the License, or
5(at your option) any later version.
6This program is distributed in the hope that it will be useful,
7but WITHOUT ANY WARRANTY; without even the implied warranty of
8MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9GNU General Public License for more details.
10You should have received a copy of the GNU General Public License
11along with this program. If not, see <http://www.gnu.org/licenses/>.
12*/
13
14#pragma once
15#include QMK_KEYBOARD_H
16
17#include "rows.h"
18
19#ifdef SPLIT_KEYBOARD
20enum userspace_layers {
21 BASE = 0,
22 _NUM,
23 _NAV,
24 _SYM,
25 _FN,
26};
27#else
28enum userspace_layers {
29 _TERMINAL = 0,
30 _FIGMA,
31 _BROWSER,
32 _VIM,
33};
34#endif
35
36
37#ifdef TAP_DANCE_ENABLE
38# include "tapdances.h"
39#endif
40
41#ifdef COMBO_ENABLE
42# include "combos.h"
43#endif
44
45#ifdef OLED_ENABLE
46 #include "oled.h"
47#endif
48
49#ifdef ENCODER_ENABLE
50 #include "encoder.h"
51#endif