all repos

init.lua @ df197e043981e28f67f8659244f8d7cbb47c1874

my nvim config
2 files changed, 7 insertions(+), 5 deletions(-)
refactor: fix lisp setup
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2023-08-21 00:51:53 +0300
Parent: f3c58fc
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()