14
Feature Request: reader mode and search through comments
(lemmy.world)
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,
}),
Care to elaborate? We are using Caddy for several projects now, and I don’t see the advantages yet, my colleague swears by it.
Liftoff! Why? Because I love swiping back from the middle of the screen instead of the sides.
It’s going in my .config/nvim/lua/config/autocmds.lua
I use lazyvim