Skip to content

Commit

Permalink
Add Dvorak support
Browse files Browse the repository at this point in the history
  • Loading branch information
tariks committed Mar 29, 2024
1 parent 2969e18 commit f2c7405
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lua/hawtkeys/keyboards.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
local M = {}
-- TODO: Make this dynamic, loading from the keyboards directory

---@alias HawtKeySupportedKeyboardLayouts "qwerty" | "colemak" | "colemak-dh"
---@alias HawtKeySupportedKeyboardLayouts "qwerty" | "colemak" | "colemak-dh" | "dvorak"

M.qwerty = require("hawtkeys.keyboards.qwerty").layout
M.colemak = require("hawtkeys.keyboards.colemak").layout
M.colemakdh = require("hawtkeys.keyboards.colemak-dh").layout
M.dvorak = require("hawtkeys.keyboards.dvorak").layout

return M

0 comments on commit f2c7405

Please sign in to comment.