plugin revamp
This commit is contained in:
parent
70caae6dcb
commit
6fe9d1b656
11 changed files with 224 additions and 59 deletions
25
lua/custom/plugins/conjure.lua
Normal file
25
lua/custom/plugins/conjure.lua
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
return {
|
||||
{
|
||||
"Olical/conjure",
|
||||
ft = { "clojure", "fennel", "janet", "racket", "hy", "scheme", "common lisp", "julia", "rust", "lua", "python" },
|
||||
lazy = true,
|
||||
init = function()
|
||||
vim.g['conjure#extract#tree_sitter#enabled'] = true
|
||||
end,
|
||||
dependencies = {
|
||||
"PaterJason/cmp-conjure",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
},
|
||||
},
|
||||
{
|
||||
"PaterJason/cmp-conjure",
|
||||
lazy = true,
|
||||
dependencies = { "nvim-cmp" },
|
||||
config = function()
|
||||
local cmp = require("cmp")
|
||||
local cfg = cmp.get_config()
|
||||
table.insert(cfg.sources, { name = "conjure" })
|
||||
return cmp.setup(cfg)
|
||||
end,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue