diff --git a/lua/custom/plugins/lisp.lua b/lua/custom/plugins/lisp.lua index 5ee77ba0..e13b6959 100644 --- a/lua/custom/plugins/lisp.lua +++ b/lua/custom/plugins/lisp.lua @@ -2,13 +2,20 @@ local lisp_dialects = { "clojure", "fennel", "scheme", "lisp" } return { -- perhaps replace parinfer with guns/vim-sexp and tpope/vim-sexp-mappings-for-regular-people + -- { + -- "gpanders/nvim-parinfer", + -- ft = lisp_dialects, + -- init = function() + -- vim.g.parinfer_force_balance = true + -- vim.g.parinfer_comment_chars = ";;" + -- end, + -- }, { - "gpanders/nvim-parinfer", + "julienvincent/nvim-paredit", ft = lisp_dialects, - init = function() - vim.g.parinfer_force_balance = true - vim.g.parinfer_comment_chars = ";;" - end, + config = function() + require("nvim-paredit").setup() + end }, { "Olical/conjure",