Avatar

SpunkyIceke42

SpunkyIceke42@lemmy.world
Joined
1 posts • 4 comments
Direct message

Liftoff! Why? Because I love swiping back from the middle of the screen instead of the sides.

permalink
report
reply

Care to elaborate? We are using Caddy for several projects now, and I don’t see the advantages yet, my colleague swears by it.

permalink
report
parent
reply

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,
  }),
permalink
report
reply

It’s going in my .config/nvim/lua/config/autocmds.lua

I use lazyvim

permalink
report
parent
reply