Comment on
What app is everyone using for Lemmy
Liftoff! Why? Because I love swiping back from the middle of the screen instead of the sides.
Comment on
What app is everyone using for Lemmy
Liftoff! Why? Because I love swiping back from the middle of the screen instead of the sides.
Comment on
Support question: lazy.vim and ansible-language-server
I created an auto command for this
-- Ansible file pattern
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile", "BufEnter" }, {
group = vim.api.nvim_create_augroup("Ansible", { clear = true }),
pattern = {
"*/roles/*/*/*.yaml",
"*/roles/*/*/.yml",
"main.yml",
"main.yaml",
"Debian*.yaml",
"Debian*.yml",
"*/ansible-devbox/*.yaml",
"*/ansible-devbox/*.yml",
"group_vars/*.yml",
"group_vars/*.yaml",
"files/*.yaml",
"files/*.yml",
"environments/*.yaml",
"environments/*.yml,",
},
callback = function()
vim.opt.filetype = "yaml.ansible"
end,
}),
Comment on
Which is your favorite sauce for french fries?
Special saus curry ketchup
Comment on
Can someone point me to a guide for using caddy using Cloudflare DNS and Caddy-Security using docker compose
Reply in thread
Care to elaborate? We are using Caddy for several projects now, and I don’t see the advantages yet, my colleague swears by it.
Comment on
Support question: lazy.vim and ansible-language-server
Reply in thread
It’s going in my .config/nvim/lua/config/autocmds.lua
I use lazyvim