
Back to vanilla ZMK! Yay! To get rid of the remaining few custom dependencies I am making a few additional small changes: - Drop generic usage page keycodes for now (they didn't work on bluetooth for me) - Stop using display tweaks for Corneish Zen (at this point my display is almost dead anyhow & I can just disable the widgets alltogether) - Refactor repo to move Zephyr to the top-level - Overload zephyr directly from the parent west manifest to get child-node fix - Use custom justfile recipe to get `west test` running
20 lines
523 B
Text
20 lines
523 B
Text
# Set sleep timeout to 30min (30*60*1000ms)
|
|
CONFIG_ZMK_SLEEP=y
|
|
CONFIG_ZMK_IDLE_SLEEP_TIMEOUT=1800000
|
|
|
|
# Enable mouse
|
|
CONFIG_ZMK_POINTING=y
|
|
CONFIG_ZMK_POINTING_SMOOTH_SCROLLING=y
|
|
|
|
# Combo config, automated by build script
|
|
CONFIG_ZMK_COMBO_MAX_COMBOS_PER_KEY=6
|
|
CONFIG_ZMK_COMBO_MAX_KEYS_PER_COMBO=3
|
|
|
|
# Don't show layer status
|
|
#CONFIG_CUSTOM_WIDGET_BATTERY_STATUS=n
|
|
CONFIG_CUSTOM_WIDGET_LAYER_STATUS=n
|
|
|
|
# Bluetooth tweaks
|
|
CONFIG_ZMK_BLE_EXPERIMENTAL_CONN=y
|
|
CONFIG_BT_GATT_ENFORCE_SUBSCRIPTION=n
|
|
CONFIG_BT_CTLR_TX_PWR_PLUS_8=y
|