Userspace for the open-source QMK keyboard firmware.
Find a file
Chris Zervakis 9b316dfbd3 Minor tweaks
2024-10-18 21:08:44 +03:00
docs Update README.md 2024-10-14 23:34:53 +03:00
keyboards/keebio/iris_ce/keymaps/chzerv Minor tweaks 2024-10-18 21:08:44 +03:00
.clang-format Initial structure. 2023-11-22 15:22:43 +11:00
.clangd Replicate qmk/qmk_firmware#23310 2024-05-02 20:11:50 +10:00
.gitignore Add clangd-related entries to .gitignore (#31) 2024-09-05 18:51:35 +10:00
LICENSE Initial structure. 2023-11-22 15:22:43 +11:00
Makefile Initial structure. 2023-11-22 15:22:43 +11:00
qmk.json Cleanup the forked template repo 2024-10-11 23:41:58 +03:00
README.md Minor tweaks 2024-10-18 21:08:44 +03:00

QMK Keymap for the Iris CE

How to use

This repository is a valid QMK external userspace as documented here. To use it, you need:

  1. QMK setup locally. See QMK Docs for details.

    qmk setup
    
  2. Clone this repository locally.

     git clone https://github.com/chzerv/qmk_keymap
    
  3. Add the cloned repository as an overlay (replace path/to/qmk_keymap with the path of the cloned repo).

    
    qmk config user.overlay_dir="$(realpath path/to/qmk_keymap)"
    
  4. (optional) set a default keyboard and keymap.

    qmk config user.keyboard=keebio/iris_ce/rev1
    qmk config user.keymap=chzerv
    
  5. Build and flash.

    qmk compile -kb keebio/iris_ce/rev1 -km chzerv
    qmk flash -kb keebio/iris_ce/rev1 -km chzerv
    
    # Or, if you followed step #4
    qmk compile
    qmk flash
    

TODO

  • My symbol layer needs a bit more tweaking
  • Make my Control/Escape mod-tap send a one-shot Ctrl when held
    • Turns out this causes more trouble than it solves:
      • Ctrl + Mouse doesn't work
      • Ctrl only applies to the first key, which makes shortcuts like deleting backwards in the shell using Ctrl+h feel very awkward, as you have to keep pressing Ctrl

Credits