summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/blink.lua
blob: 7ff00723fbe76c87b6fa07c8d052afd1a472975e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  "blink.cmp",
  lazy = true,
  event = "InsertEnter",
  after = function ()
    require("blink.cmp").setup {
      keymap = { preset = 'default' },
      sources = {
        default = { 'lsp', 'snippets', 'path' },
      },
    }
  end
}