48 lines
1.7 KiB
Lua
48 lines
1.7 KiB
Lua
return {
|
|
'saghen/blink.cmp',
|
|
-- optional: provides snippets for the snippet source
|
|
dependencies = 'rafamadriz/friendly-snippets',
|
|
|
|
-- use a release tag to download pre-built binaries
|
|
version = '*',
|
|
|
|
---@module 'blink.cmp'
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
-- 'default' for mappings similar to built-in completion
|
|
-- 'super-tab' for mappings similar to vscode (tab to accept, arrow keys to navigate)
|
|
-- 'enter' for mappings similar to 'super-tab' but with 'enter' to accept
|
|
-- see the "default configuration" section below for full documentation on how to define
|
|
-- your own keymap.
|
|
keymap = { preset = 'default' },
|
|
|
|
appearance = {
|
|
-- Sets the fallback highlight groups to nvim-cmp's highlight groups
|
|
-- Useful for when your theme doesn't support blink.cmp
|
|
-- will be removed in a future release
|
|
use_nvim_cmp_as_default = true,
|
|
-- Set to 'mono' for 'Nerd Font Mono' or 'normal' for 'Nerd Font'
|
|
-- Adjusts spacing to ensure icons are aligned
|
|
nerd_font_variant = 'mono',
|
|
},
|
|
|
|
completion = {
|
|
documentation = { auto_show = true, auto_show_delay_ms = 500 },
|
|
ghost_text = { enabled = true },
|
|
},
|
|
|
|
-- default list of enabled providers defined so that you can extend it
|
|
-- elsewhere in your config, without redefining it, via `opts_extend`
|
|
sources = {
|
|
default = { 'lsp', 'path', 'snippets', 'buffer' },
|
|
-- optionally disable cmdline completions
|
|
-- cmdline = {},
|
|
},
|
|
|
|
-- experimental signature help support
|
|
signature = { enabled = true },
|
|
},
|
|
-- allows extending the providers array elsewhere in your config
|
|
-- without having to redefine it
|
|
opts_extend = { 'sources.default' },
|
|
}
|