aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/keymap.h2
-rw-r--r--src/model01.ino6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/keymap.h b/src/keymap.h
index c58cbea..447a4a4 100644
--- a/src/keymap.h
+++ b/src/keymap.h
@@ -19,7 +19,6 @@
#pragma once
-#include "Macros.h"
/* Layers */
enum {
@@ -34,6 +33,7 @@ enum {
#define Key_Plus LSHIFT(Key_Equals)
#define Key_Underscore LSHIFT(Key_Minus)
+
/* Keymaps */
KEYMAPS(
[DVORAK] = KEYMAP_STACKED(
diff --git a/src/model01.ino b/src/model01.ino
index 1a65c5d..61f0871 100644
--- a/src/model01.ino
+++ b/src/model01.ino
@@ -27,15 +27,13 @@
#include <Kaleidoscope-LEDControl.h>
#include <Kaleidoscope-LED-ActiveModColor.h>
#include <Kaleidoscope-LED-Palette-Theme.h>
-#include <Kaleidoscope-OneShot.h>
#include <Kaleidoscope-MouseKeys.h>
-#include <Kaleidoscope-Unicode.h>
+#include <Kaleidoscope-OneShot.h>
#include "Macros.h"
#include "TapDance.h"
#include "keymap.h"
-
KALEIDOSCOPE_INIT_PLUGINS(
EEPROMSettings
, TapDance
@@ -74,3 +72,5 @@ void loop() {
cancelOneShot = false;
}
}
+
+/* vim: set filetype=cpp : */