AutoYADM commit: 2024-12-28 19:00:02
This commit is contained in:
parent
33524c8e4f
commit
16ac184f03
1 changed files with 12 additions and 11 deletions
|
@ -1,9 +1,3 @@
|
|||
local corne = {
|
||||
"x x x x x x _ x x x x x x",
|
||||
"x x x x x x _ x x x x x x",
|
||||
"x x x x x x _ x x x x x x",
|
||||
"_ _ _ x x x _ x x x _ _ _",
|
||||
}
|
||||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
|
@ -15,10 +9,17 @@ return {
|
|||
},
|
||||
{
|
||||
"codethread/qmk.nvim",
|
||||
opts = {
|
||||
name = "corne",
|
||||
layout = corne,
|
||||
variant = "zmk",
|
||||
},
|
||||
ft = "dts",
|
||||
opts = function()
|
||||
local corne = {
|
||||
"x x x x x x _ x x x x x x",
|
||||
"x x x x x x _ x x x x x x",
|
||||
"x x x x x x _ x x x x x x",
|
||||
"_ _ _ x x x _ x x x _ _ _",
|
||||
}
|
||||
local o = { name = "corne", layout = corne, variant = "zmk" }
|
||||
vim.keymap.set({ "n" }, "<localleader>f", "<CMD>QMKFormat<CR>", { desc = "Format keymap." })
|
||||
return o
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue