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.

51 lines
1.1 KiB

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