lazyvim-starter

My configuration changes to https://github.com/LazyVim/starter
git clone https://git.eamoncaddigan.net/lazyvim-starter.git
Log | Files | Refs | README | LICENSE

extend-blink.lua (249B)


      1 return {
      2   "saghen/blink.cmp",
      3   opts = function(_, opts)
      4     opts.enabled = function()
      5       return not vim.tbl_contains({ "markdown" }, vim.bo.filetype)
      6         and vim.bo.buftype ~= "prompt"
      7         and vim.b.completion ~= false
      8     end
      9   end,
     10 }