2 files changed,
7 insertions(+),
5 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2023-08-21 00:51:53 +0300
Parent:
f3c58fc
jump to
| M | lua/plugins/common.lua |
| M | lua/plugins/conjure.lua |
M
lua/plugins/common.lua
@@ -34,7 +34,7 @@ "windwp/nvim-autopairs",
event = "InsertEnter", opts = { check_ts = true, - disable_filetype = { "TelescopePrompt", "clojure", "markdown" }, + disable_filetype = { "TelescopePrompt", "markdown" }, }, }, {
M
lua/plugins/conjure.lua
@@ -1,10 +1,12 @@
-local lisp_ft = { "clojure", "fennel", "scheme", "lisp" } -local ft = vim.tbl_deep_extend("keep", { "lua" }, lisp_ft) return { - { "eraserhd/parinfer-rust", ft = lisp_ft, build = "cargo build --release" }, + { + "eraserhd/parinfer-rust", + ft = { "clojure", "fennel", "scheme", "lisp" }, + build = "cargo build --release", + }, { "Olical/conjure", - ft = ft, + ft = { "lua", "clojure", "fennel", "scheme", "lisp" }, branch = "develop", dependencies = { "PaterJason/cmp-conjure" }, init = function()