mirror of
https://github.com/tomru/nvim.git
synced 2026-03-04 06:57:15 +01:00
update cmp config
This commit is contained in:
@@ -1,13 +1,12 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
'saghen/blink.cmp',
|
'saghen/blink.cmp',
|
||||||
lazy = false, -- lazy loading handled internally
|
|
||||||
-- optional: provides snippets for the snippet source
|
-- optional: provides snippets for the snippet source
|
||||||
dependencies = 'rafamadriz/friendly-snippets',
|
dependencies = 'rafamadriz/friendly-snippets',
|
||||||
|
|
||||||
-- use a release tag to download pre-built binaries
|
-- use a release tag to download pre-built binaries
|
||||||
version = 'v0.*',
|
version = '*',
|
||||||
-- OR build from source, requires nightly: https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust
|
-- AND/OR build from source, requires nightly: https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust
|
||||||
-- build = 'cargo build --release',
|
-- build = 'cargo build --release',
|
||||||
-- If you use nix, you can build from source using latest nightly rust with:
|
-- If you use nix, you can build from source using latest nightly rust with:
|
||||||
-- build = 'nix run .#build-plugin',
|
-- build = 'nix run .#build-plugin',
|
||||||
@@ -18,26 +17,26 @@ return {
|
|||||||
-- 'default' for mappings similar to built-in completion
|
-- 'default' for mappings similar to built-in completion
|
||||||
-- 'super-tab' for mappings similar to vscode (tab to accept, arrow keys to navigate)
|
-- '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
|
-- '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
|
-- See the full "keymap" documentation for information on defining your own keymap.
|
||||||
-- your own keymap.
|
|
||||||
keymap = { preset = 'default' },
|
keymap = { preset = 'default' },
|
||||||
|
|
||||||
highlight = {
|
appearance = {
|
||||||
-- sets the fallback highlight groups to nvim-cmp's highlight groups
|
-- Sets the fallback highlight groups to nvim-cmp's highlight groups
|
||||||
-- useful for when your theme doesn't support blink.cmp
|
-- Useful for when your theme doesn't support blink.cmp
|
||||||
-- will be removed in a future release, assuming themes add support
|
-- Will be removed in a future release
|
||||||
use_nvim_cmp_as_default = true,
|
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',
|
||||||
},
|
},
|
||||||
-- set to 'mono' for 'Nerd Font Mono' or 'normal' for 'Nerd Font'
|
|
||||||
-- adjusts spacing to ensure icons are aligned
|
|
||||||
nerd_font_variant = 'mono',
|
|
||||||
|
|
||||||
-- experimental auto-brackets support
|
-- Default list of enabled providers defined so that you can extend it
|
||||||
-- accept = { auto_brackets = { enabled = true } }
|
-- elsewhere in your config, without redefining it, due to `opts_extend`
|
||||||
|
sources = {
|
||||||
-- experimental signature help support
|
default = { 'lsp', 'path', 'snippets', 'buffer' },
|
||||||
-- trigger = { signature_help = { enabled = true } }
|
},
|
||||||
},
|
},
|
||||||
|
opts_extend = { 'sources.default' },
|
||||||
},
|
},
|
||||||
|
|
||||||
-- LSP servers and clients communicate what features they support through "capabilities".
|
-- LSP servers and clients communicate what features they support through "capabilities".
|
||||||
|
|||||||
Reference in New Issue
Block a user