2 Commits

Author SHA1 Message Date
Shaun Setlock
2fa27cde63 Adding QEMU step before buildx setup.
All checks were successful
Build and Push Docker Image / build-push (push) Successful in 1h4m48s
2025-05-10 14:05:13 -04:00
Shaun Setlock
74b2678a49 Included arm64 builds to all workflows.
Some checks failed
Build and Push Docker Image / build-push (push) Failing after 41m16s
2025-05-09 21:00:30 -04:00
3 changed files with 0 additions and 40 deletions

View File

@@ -1,2 +0,0 @@
config:
MD013: false

View File

@@ -1,26 +0,0 @@
return {
"saghen/blink.cmp",
opts = function(_, opts)
local completion_toggle = Snacks.toggle({
name = "Completion",
get = function()
return vim.b.completion
end,
set = function(state)
vim.b.completion = state
end,
})
local function toggle_completion()
require("blink.cmp").hide()
completion_toggle:toggle()
end
vim.keymap.set({ "i", "n" }, "<C-Space>", toggle_completion, { desc = "Toggle Completion" })
opts.enabled = function()
return vim.b.completion
end
return opts
end,
}

View File

@@ -1,12 +0,0 @@
local HOME = os.getenv("HOME")
return {
"mfussenegger/nvim-lint",
optional = true,
opts = {
linters = {
["markdownlint-cli2"] = {
args = { "--config", HOME .. "/.config/nvim/lua/plugins/.markdownlint-cli2.yaml", "--" },
},
},
},
}