Fixed caps issue on leader_dictionary and debug_enable

This commit is contained in:
Kyle Brown
2018-10-11 19:35:41 -07:00
parent 37aeeac10a
commit 5313e5f5b5
6 changed files with 11 additions and 11 deletions

View File

@@ -16,7 +16,7 @@ diode_orientation = DiodeOrientation.COLUMNS
unicode_mode = UnicodeModes.LINUX
tap_time = 200
leader_timeout = 2000
DEBUG_ENABLE = True
debug_enable = True
emoticons = AttrDict({
# Emoticons, but fancier
@@ -35,7 +35,7 @@ for k, v in emoticons.items():
# ---------------------- Leader Key Macros --------------------------------------------
LEADER_DICTIONARY = {
leader_dictionary = {
(KC.F, KC.L, KC.I, KC.P): emoticons.ANGRY_TABLE_FLIP,
(KC.C, KC.H, KC.E, KC.E, KC.R): emoticons.CHEER,
(KC.W, KC.A, KC.T): emoticons.WAT,

View File

@@ -18,7 +18,7 @@ diode_orientation = DiodeOrientation.COLUMNS
unicode_mode = UnicodeModes.LINUX
tap_time = 150
leader_timeout = 2000
DEBUG_ENABLE = False
debug_enable = False
# -------------------------------Macros -----------------------------------------------
@@ -41,7 +41,7 @@ for k, v in emoticons.items():
# ---------------------- Leader Key Macros --------------------------------------------
gc.collect()
LEADER_DICTIONARY = {
leader_dictionary = {
(KC.F, KC.L, KC.I, KC.P): emoticons.ANGRY_TABLE_FLIP,
(KC.C, KC.H, KC.E, KC.E, KC.R): emoticons.CHEER,
(KC.W, KC.A, KC.T): emoticons.WAT,