mirror of https://github.com/LazyVim/starter
58 lines
2.4 KiB
Lua
58 lines
2.4 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 = "*",
|
|
-- AND/OR build from source, requires nightly: https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust
|
|
-- build = 'cargo build --release',
|
|
-- If you use nix, you can build from source using latest nightly rust with:
|
|
-- build = 'nix run .#build-plugin',
|
|
|
|
---@module 'blink.cmp'
|
|
---@type blink.cmp.Config
|
|
opts = {
|
|
-- completion = {
|
|
-- list = {
|
|
-- selection = {
|
|
-- -- When `true`, will automatically select the first item in the completion list
|
|
-- preselect = false,
|
|
-- -- preselect = function(ctx) return vim.bo.filetype ~= 'markdown' end,
|
|
--
|
|
-- -- When `true`, inserts the completion item automatically when selecting it
|
|
-- -- You may want to bind a key to the `cancel` command (default <C-e>) when using this option,
|
|
-- -- which will both undo the selection and hide the completion menu
|
|
-- auto_insert = true,
|
|
-- -- auto_insert = function(ctx) return vim.bo.filetype ~= 'markdown' end
|
|
-- },
|
|
-- },
|
|
-- },
|
|
-- '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 full "keymap" documentation for information on defining your own keymap.
|
|
keymap = {
|
|
preset = "super-tab",
|
|
-- ["<Tab>"] = { "select_next", "snippet_forward", "fallback" },
|
|
-- ["<S-Tab>"] = { "select_prev", "snippet_backward", "fallback" },
|
|
},
|
|
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",
|
|
},
|
|
|
|
-- Default list of enabled providers defined so that you can extend it
|
|
-- elsewhere in your config, without redefining it, due to `opts_extend`
|
|
sources = {
|
|
default = { "lsp", "path", "snippets", "buffer" },
|
|
},
|
|
},
|
|
opts_extend = { "sources.default" },
|
|
}
|