aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/nvim/lua/config/blink.lua
blob: ac49dc8cca2355a97226b3429da8fbbb06d35813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require("blink.cmp").setup({
	keymap = {
		preset = "enter",
	},
	sources = { default = { "lsp", "path", "snippets", "buffer" } },
	completion = {
		menu = {
			auto_show = true,
      max_height=5,
		},
    list = {
      max_items = 6,
    },
		documentation = { auto_show = false, auto_show_delay_ms = 500 },
		ghost_text = { enabled = true },
	},
	signature = { enabled = true },
})