nvim: Add pandoc completion to blink
This commit is contained in:
parent
3a10d7a849
commit
f4da232b79
2 changed files with 9 additions and 4 deletions
nvim/.config/nvim/lua/plugins
|
@ -6,9 +6,15 @@ return {
|
|||
"rafamadriz/friendly-snippets",
|
||||
"hrsh7th/cmp-calc",
|
||||
"f3fora/cmp-spell",
|
||||
{ "aspeddro/cmp-pandoc.nvim", opts = {
|
||||
filetypes = { "pandoc", "markdown", "quarto", "rmd" },
|
||||
} },
|
||||
{
|
||||
"aspeddro/cmp-pandoc.nvim",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
opts = {
|
||||
filetypes = { "pandoc", "markdown", "quarto", "rmd" },
|
||||
},
|
||||
},
|
||||
},
|
||||
lazy = false,
|
||||
opts = {
|
||||
|
|
|
@ -15,7 +15,6 @@ return {
|
|||
dependencies = {
|
||||
"jmbuhr/otter.nvim",
|
||||
"neovim/nvim-lspconfig",
|
||||
"hrsh7th/nvim-cmp",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
{ "benlubas/molten-nvim", optional = true },
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue