Skip Navigation
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,
      }),
    
  • Feature Request: reader mode and search through comments

    I’d think the option to always open links in reader mode would be nice. As well as a search through comments.

    0
    InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SP
    SpunkyIceke42 @lemmy.world
    Posts 1
    Comments 4