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 = {
|
sources = {
|
||||||
default = { 'lsp' },
|
default = {
|
||||||
cmdline = {},
|
'lsp',
|
||||||
providers = {},
|
'emoji',
|
||||||
|
},
|
||||||
|
cmdline = {},
|
||||||
|
providers = {
|
||||||
|
emoji = {
|
||||||
|
module = "blink-emoji",
|
||||||
|
name = "Emoji",
|
||||||
|
score_offset = 1,
|
||||||
|
opts = { insert = true },
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
@ -47,6 +47,7 @@ in
|
||||||
|
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
blink-compat
|
blink-compat
|
||||||
|
blink-emoji-nvim
|
||||||
friendly-snippets
|
friendly-snippets
|
||||||
go-nvim
|
go-nvim
|
||||||
targets-vim
|
targets-vim
|
||||||
|
|
Loading…
Add table
Reference in a new issue