├── .envrc ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build-nix.yml │ ├── build.yml │ └── test-build-env.yml ├── .gitignore ├── .prettierrc ├── Justfile ├── config ├── base.keymap ├── combos.dtsi ├── corneish_zen.conf ├── corneish_zen.keymap ├── glove80.conf ├── glove80.keymap ├── leader.dtsi ├── mouse.dtsi ├── planck_rev6.conf ├── planck_rev6.keymap └── west.yml ├── draw ├── base.svg ├── config.yaml └── keymap.png ├── flake.lock ├── flake.nix ├── nix ├── keymap-drawer.nix └── tree-sitter-devicetree.nix └── readme.md /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.github/workflows/build-nix.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.github/workflows/test-build-env.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | proseWrap: "always" 2 | editorconfig: true 3 | -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/Justfile -------------------------------------------------------------------------------- /config/base.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/base.keymap -------------------------------------------------------------------------------- /config/combos.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/combos.dtsi -------------------------------------------------------------------------------- /config/corneish_zen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/corneish_zen.conf -------------------------------------------------------------------------------- /config/corneish_zen.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/corneish_zen.keymap -------------------------------------------------------------------------------- /config/glove80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/glove80.conf -------------------------------------------------------------------------------- /config/glove80.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/glove80.keymap -------------------------------------------------------------------------------- /config/leader.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/leader.dtsi -------------------------------------------------------------------------------- /config/mouse.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/mouse.dtsi -------------------------------------------------------------------------------- /config/planck_rev6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/planck_rev6.conf -------------------------------------------------------------------------------- /config/planck_rev6.keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/planck_rev6.keymap -------------------------------------------------------------------------------- /config/west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/config/west.yml -------------------------------------------------------------------------------- /draw/base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/draw/base.svg -------------------------------------------------------------------------------- /draw/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/draw/config.yaml -------------------------------------------------------------------------------- /draw/keymap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/draw/keymap.png -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/keymap-drawer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/nix/keymap-drawer.nix -------------------------------------------------------------------------------- /nix/tree-sitter-devicetree.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/nix/tree-sitter-devicetree.nix -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urob/zmk-config/HEAD/readme.md --------------------------------------------------------------------------------