Compare commits
3 Commits
6799b381be
...
a50b7b4b55
Author | SHA1 | Date |
---|---|---|
iGor milhit | a50b7b4b55 | |
iGor milhit | fd295f92e4 | |
iGor milhit | 8799c947d1 |
|
@ -1,3 +1,4 @@
|
|||
-- Load all module files
|
||||
require("core.python-provider")
|
||||
require("core.keymaps")
|
||||
require("core.options")
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
-- 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"
|
|
@ -0,0 +1,25 @@
|
|||
-- 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,6 +107,7 @@ return {
|
|||
},
|
||||
{ name = "path" },
|
||||
{ name = "emoji" },
|
||||
{ name = "cmp_zotcite"} -- zotcite (plugins/markdown/zotcite.lua)
|
||||
}),
|
||||
|
||||
formatting = {
|
||||
|
|
|
@ -45,7 +45,9 @@ return {
|
|||
-- Enable color syntax
|
||||
highlight = {
|
||||
enable = true,
|
||||
disable = { "markdown" },
|
||||
disable = {
|
||||
"markdown"
|
||||
},
|
||||
},
|
||||
-- Enable better indentation management
|
||||
indent = { enable = true },
|
||||
|
@ -64,6 +66,9 @@ return {
|
|||
"yaml",
|
||||
},
|
||||
|
||||
-- Empty option, to avoid warning
|
||||
modules = {},
|
||||
|
||||
-- List of parsers to ignore installing
|
||||
ignore_install = {
|
||||
"markdown",
|
||||
|
@ -133,5 +138,3 @@ return {
|
|||
})
|
||||
end,
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue