Compare commits
No commits in common. "a50b7b4b55c615df9671436a70de32460f2aabc4" and "6799b381bee4fcd917d1e0673a7b13fc78ffd20a" have entirely different histories.
a50b7b4b55
...
6799b381be
|
@ -1,4 +1,3 @@
|
||||||
-- Load all module files
|
-- Load all module files
|
||||||
require("core.python-provider")
|
|
||||||
require("core.keymaps")
|
require("core.keymaps")
|
||||||
require("core.options")
|
require("core.options")
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
-- Set a virtualenv as python provider
|
|
||||||
-- https://neovim.io/doc/user/provider.html#python-virtualenv
|
|
||||||
|
|
||||||
vim.g.python3_host_prog = "/home/igor/.pyenv/versions/py-nvim3.10/bin/python"
|
|
|
@ -1,25 +0,0 @@
|
||||||
-- Install and configure zotcite
|
|
||||||
-- https://github.com/jalvesaq/zotcite
|
|
||||||
|
|
||||||
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",
|
|
||||||
"rmd",
|
|
||||||
"quarto",
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
}
|
|
|
@ -107,7 +107,6 @@ return {
|
||||||
},
|
},
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
{ name = "emoji" },
|
{ name = "emoji" },
|
||||||
{ name = "cmp_zotcite"} -- zotcite (plugins/markdown/zotcite.lua)
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
formatting = {
|
formatting = {
|
||||||
|
|
|
@ -45,9 +45,7 @@ return {
|
||||||
-- Enable color syntax
|
-- Enable color syntax
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
disable = {
|
disable = { "markdown" },
|
||||||
"markdown"
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
-- Enable better indentation management
|
-- Enable better indentation management
|
||||||
indent = { enable = true },
|
indent = { enable = true },
|
||||||
|
@ -66,9 +64,6 @@ 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",
|
||||||
|
@ -138,3 +133,5 @@ return {
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue