module User.Elaforge.KeyLayout (layout) where
import qualified Cmd.KeyLayouts as KeyLayouts
layout :: KeyLayouts.Layout
layout :: Layout
layout = [Char] -> [Char] -> [Char] -> Layout
KeyLayouts.layout [Char]
"local dvorak"
(forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat
[ [Char]
"`1234567890-="
, [Char]
"',.pyfgcrl[]\\"
, [Char]
"aoeuidhtns/"
, [Char]
";qjkxbmwvz"
])
(forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat
[ [Char]
"~!@#$%^&*()_+"
, [Char]
"\"<>PYFGCRL{}|"
, [Char]
"AOEUIDHTNS?"
, [Char]
":QJKXBMWVZ"
])