neovim - all packages

This commit is contained in:
2024-03-02 18:14:05 +01:00
parent 8b8d9fd9b5
commit a5c009d449
26 changed files with 536 additions and 85 deletions

View File

@@ -0,0 +1,34 @@
return {
{
"Olical/conjure",
ft = { "lua", "python", "scheme" },
dependencies = {
{
"PaterJason/cmp-conjure",
config = function()
local cmp = require("cmp")
local config = cmp.get_config()
table.insert(config.sources, {
name = "buffer",
option = {
sources = {
{ name = "conjure" },
},
},
})
cmp.setup(config)
end,
},
},
config = function()
require("conjure.main").main()
require("conjure.mapping")["on-filetype"]()
vim.g["conjure#debug"] = false
vim.g["conjure#client#scheme#stdio#command"] = "scheme"
vim.g["conjure#client#scheme#stdio#prompt_pattern"] = "> $?"
vim.g["conjure#mapping#prefix"] = "<leader>,"
vim.g["conjure#extract#tree_sitter#enabled"] = true
end,
},
}