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