Compare commits
2 Commits
7a8d0c78c3
...
a50b7b4b55
Author | SHA1 | Date |
---|---|---|
iGor milhit | a50b7b4b55 | |
iGor milhit | fd295f92e4 |
|
@ -5,12 +5,15 @@ return {
|
||||||
"jalvesaq/zotcite",
|
"jalvesaq/zotcite",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
-- Add completion for zotcite
|
||||||
|
"jalvesaq/cmp-zotcite",
|
||||||
},
|
},
|
||||||
config = function ()
|
config = function ()
|
||||||
require("zotcite").setup({
|
require("zotcite").setup({
|
||||||
-- waiting for zotcite options
|
-- waiting for zotcite options
|
||||||
})
|
})
|
||||||
require("cmp_zotcite").setup({
|
require("cmp_zotcite").setup({
|
||||||
|
-- Add the pandoc filetype
|
||||||
filetypes = {
|
filetypes = {
|
||||||
"pandoc",
|
"pandoc",
|
||||||
"markdown",
|
"markdown",
|
||||||
|
|
|
@ -28,9 +28,6 @@ return {
|
||||||
"hrsh7th/cmp-emoji",
|
"hrsh7th/cmp-emoji",
|
||||||
-- vs-code pictrograms
|
-- vs-code pictrograms
|
||||||
"onsails/lspkind.nvim",
|
"onsails/lspkind.nvim",
|
||||||
|
|
||||||
-- Adds completion for zotcite
|
|
||||||
"jalvesaq/cmp-zotcite",
|
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Configure nvim-cmp
|
-- Configure nvim-cmp
|
||||||
|
@ -110,7 +107,7 @@ return {
|
||||||
},
|
},
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
{ name = "emoji" },
|
{ name = "emoji" },
|
||||||
{ name = "cmp_zotcite"}
|
{ name = "cmp_zotcite"} -- zotcite (plugins/markdown/zotcite.lua)
|
||||||
}),
|
}),
|
||||||
|
|
||||||
formatting = {
|
formatting = {
|
||||||
|
|
|
@ -45,7 +45,9 @@ return {
|
||||||
-- Enable color syntax
|
-- Enable color syntax
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
disable = { "markdown" },
|
disable = {
|
||||||
|
"markdown"
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- Enable better indentation management
|
-- Enable better indentation management
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
@ -64,6 +66,9 @@ return {
|
||||||
"yaml",
|
"yaml",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
-- Empty option, to avoid warning
|
||||||
|
modules = {},
|
||||||
|
|
||||||
-- List of parsers to ignore installing
|
-- List of parsers to ignore installing
|
||||||
ignore_install = {
|
ignore_install = {
|
||||||
"markdown",
|
"markdown",
|
||||||
|
@ -133,5 +138,3 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue