---
title: "all lt keys to hl · WaylonWalker/zmk-config-42block@ce25356"
description: "!https://github.com/WaylonWalker/zmk-config-42block/commit/ce25356e88eb2439182201700314133de719457e"
date: 2024-07-22
published: true
tags:
  - keyboard
  - thought
  - zmk
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://github.com/WaylonWalker/zmk-config-42block/commit/ce25356e88eb2439182201700314133de719457e" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-image">
      <img src="https://opengraph.githubassets.com/f8d4d1570b5f3dd9b06dd7712c0b6dcc434f739808b8118d2808edc7185c7744/WaylonWalker/zmk-config-42block/commit/ce25356e88eb2439182201700314133de719457e" alt="all lt keys to hl · WaylonWalker/zmk-config-42block@ce25356 — Contribute to WaylonWalker/zmk-config-42block development by creating an account on GitHub." loading="lazy">
    </div>
    <div class="embed-card-content">
      <div class="embed-card-title">all lt keys to hl · WaylonWalker/zmk-config-42block@ce25356</div>
      <div class="embed-card-description">Contribute to WaylonWalker/zmk-config-42block development by creating an account on GitHub.</div>
      <div class="embed-card-meta">GitHub &middot; github.com</div>
    </div>
  </a>
</div>


Today I swapped out all of my keys that are used dual purpose for letters and layers to homerow layers.  This prevents goofy things happening when rolling, and prefers-tap makes it so that keys that are rolled over get hit as letters instead of as layers.  This was one of my biggest hurdles jumping into zmk,  lt as a homerow key just does not behave the same as the ht/hm behaviors with tap-preferred set.


!!! seealso
  See previous commit where I added the hl https://github.com/WaylonWalker/zmk-config-42block/commit/9522c859cdf024a2c2b73931c130ddc907c09ffc

``` c
        hl: homerow_layer {
            compatible = "zmk,behavior-hold-tap";
            label = "HOMEROW_LAYER";
            bindings = <&mo>, <&kp>;

            #binding-cells = <2>;
            tapping-term-ms = <150>;
            flavor = "tap-preferred";
        };
```
