aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/preonic/keymaps/laurentlaurent/config.h
diff options
context:
space:
mode:
authorLaurent Lao <32573725+laurentlaurent@users.noreply.github.com>2019-10-12 00:35:53 -0400
committerDrashna Jaelre <drashna@live.com>2019-10-11 21:35:53 -0700
commit22aa2ce6b2f3bda51aca84d8f707c17f0301ff3b (patch)
tree4178b080d9752139bdf463d9af7ace328700ac9a /keyboards/preonic/keymaps/laurentlaurent/config.h
parent76378d74f522f53eebc05907d44c839455a0336b (diff)
downloadfirmware-22aa2ce6b2f3bda51aca84d8f707c17f0301ff3b.tar.gz
firmware-22aa2ce6b2f3bda51aca84d8f707c17f0301ff3b.tar.bz2
firmware-22aa2ce6b2f3bda51aca84d8f707c17f0301ff3b.zip
[Keymap] laurentlaurent's preonic keymap (#6977)
* Removed ugfx binary because of antivirus * Created laurent's keymap * Made QWERTY Mac and QWERTY Windows * Rev 1.0, added _PUNC, _NAV, _EXTRA * REV 1.1, Dynamic macros start/stop now plays a sound, Lower acts like backspace on tap * Formatting fixes * Added Intellisense macro, fixed formatting * Improved ergonomics/muscle mem on punctuation lay * Added Raise Tap to Backspace * Mirrored Ergodox, added One-Handed * Added layers in README.md, added Caps lock, Scroll lock * Moved Caps to better location * Added ErgoDox link * Edit Readme.md with more layer switching information * Modified _PUNC for muscle memory * Reverted .gitignore and .vscode settings.json to reflect master * Improved formatting according to PR review * QMK_KEYBOARD_H def for Intellisense fixed->rev3.h * .gitignore diff fix * Fixing settings.json diff * Update settings.json * Update keyboards/preonic/keymaps/laurentlaurent/keymap.c Co-Authored-By: fauxpark <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/preonic/keymaps/laurentlaurent/config.h')
-rw-r--r--keyboards/preonic/keymaps/laurentlaurent/config.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/keyboards/preonic/keymaps/laurentlaurent/config.h b/keyboards/preonic/keymaps/laurentlaurent/config.h
new file mode 100644
index 000000000..36944e9c6
--- /dev/null
+++ b/keyboards/preonic/keymaps/laurentlaurent/config.h
@@ -0,0 +1,41 @@
+#pragma once
+
+#ifdef AUDIO_ENABLE
+ #define STARTUP_SONG SONG(PREONIC_SOUND)
+ // #define STARTUP_SONG SONG(NO_SOUND)
+
+ #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
+ SONG(COLEMAK_SOUND), \
+ SONG(DVORAK_SOUND) \
+ }
+#endif
+
+#define MUSIC_MASK (keycode != KC_NO)
+
+/*
+ * MIDI options
+ */
+
+/* Prevent use of disabled MIDI features in the keymap */
+//#define MIDI_ENABLE_STRICT 1
+
+/* enable basic MIDI features:
+ - MIDI notes can be sent when in Music mode is on
+*/
+
+#define MIDI_BASIC
+
+/* enable advanced MIDI features:
+ - MIDI notes can be added to the keymap
+ - Octave shift and transpose
+ - Virtual sustain, portamento, and modulation wheel
+ - etc.
+*/
+//#define MIDI_ADVANCED
+
+/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
+//#define MIDI_TONE_KEYCODE_OCTAVES 2
+
+// Fix Home Row mod keys
+#define IGNORE_MOD_TAP_INTERRUPT
+//#define RETRO_TAPPING \ No newline at end of file