nvim: add blink-emoji completion 🚀
This commit is contained in:
parent
df7f12c94c
commit
fdb2fa86e4
2 changed files with 13 additions and 3 deletions
|
@ -61,9 +61,18 @@ require 'blink-cmp'.setup({
|
|||
},
|
||||
|
||||
sources = {
|
||||
default = { 'lsp' },
|
||||
cmdline = {},
|
||||
providers = {},
|
||||
default = {
|
||||
'lsp',
|
||||
'emoji',
|
||||
},
|
||||
cmdline = {},
|
||||
providers = {
|
||||
emoji = {
|
||||
module = "blink-emoji",
|
||||
name = "Emoji",
|
||||
score_offset = 1,
|
||||
opts = { insert = true },
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
})
|
||||
|
|
|
@ -47,6 +47,7 @@ in
|
|||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
blink-compat
|
||||
blink-emoji-nvim
|
||||
friendly-snippets
|
||||
go-nvim
|
||||
targets-vim
|
||||
|
|
Loading…
Add table
Reference in a new issue