nvim: Add pandoc completion to blink

This commit is contained in:
Marty Oehme 2025-01-31 12:35:27 +01:00
parent 3a10d7a849
commit f4da232b79
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 9 additions and 4 deletions
nvim/.config/nvim/lua/plugins

View file

@ -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 = {

View file

@ -15,7 +15,6 @@ return {
dependencies = {
"jmbuhr/otter.nvim",
"neovim/nvim-lspconfig",
"hrsh7th/nvim-cmp",
"nvim-treesitter/nvim-treesitter",
{ "benlubas/molten-nvim", optional = true },
},