diff options
author | Manassarn Manoonchai <nazzarn@gmail.com> | 2017-10-25 23:11:07 +0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-10-25 06:11:07 -1000 |
commit | a3f53aeaa12e6e6ce9b5087ded35f5e3af4f3190 (patch) | |
tree | 5d83282f56ab08f97509f430eb4996ce2a23e4cb /keyboards/planck/keymaps/narze/config.h | |
parent | 6c4639bfac98e327fd395898e63670c38cb7721f (diff) |
Add narze keymaps for Ergodox & Planck with SuperDuper mode implementation (#1883)
* Fork default planck keymap
* Esc -> CapsLock
* Swap Tilde & Grave in Lower & Raise
* Replace Blacklight key with Raise
* Add Hyper/Esc & Shift/Enter key
* Add super duper mode using S+D combo
* Change superduper mode sound
* Add more functionality to superduper mode
* Fork default
* Replace all left shift to shift/parensopen (space cadet)
* Super / Underscore
* Try superduper on z/slash held
* Use function/macro instead, LGUI_UNDS alone not working
* ✨ Add mouse layer 🐭
* 🐛 Fix superduper
* :sparkles: Fix GUI_UNDS
* :bug: Fix registering underscore when releasing too fast
* :bug: Fix Shift/( with LT z
* ✨ Add superduper for colemak
* ✨ Add Qwerty on software Colemak layout & make Superduper available on multile layouts
* ✨ Enable/disable superduper mode & fix layer switching
* 🐛 Fix superduper not unregister mods
* ✨ Update planck-like ergodox (wip)
* :bug: Fix return before changing tap count & modify comments
* :sparkles: Replace with planck code
* 📝 Update readme
* ✨ Fix SuperDuper by using intermediate layers
* Remove LT from inner lower & raise for ease of use
* Change TG to LG
* Add options & disable audio
* :wrench: Enable ignore mod tap interrupt & shorting tapping term
* :memo: Update readme
* Remove including quantum makefile
* :memo: Update readme
* Rename Makefiles
Diffstat (limited to 'keyboards/planck/keymaps/narze/config.h')
-rw-r--r-- | keyboards/planck/keymaps/narze/config.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/narze/config.h b/keyboards/planck/keymaps/narze/config.h new file mode 100644 index 0000000000..e081a93b53 --- /dev/null +++ b/keyboards/planck/keymaps/narze/config.h @@ -0,0 +1,42 @@ +#ifndef CONFIG_USER_H +#define CONFIG_USER_H + +#include "../../config.h" + +/* + * 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 + +#define TAPPING_TERM 200 + +#define COMBO_TERM 20 +#define COMBO_COUNT 1 + +#define IGNORE_MOD_TAP_INTERRUPT +#define PERMISSIVE_HOLD +#define PREVENT_STUCK_MODIFIERS + +#define SUPER_DUPER_SOUND S__NOTE(_B1) + +#define MOUSEKEY_DELAY 100 + +#endif
\ No newline at end of file |