fix blankline bug, return to parinfer

This commit is contained in:
mjhika 2023-10-03 16:40:15 -04:00
parent 038e7b5c59
commit 82bdf9f215
3 changed files with 24 additions and 23 deletions

View file

@ -3,6 +3,7 @@ return {
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
main = "ibl",
opts = {
char = '',
show_trailing_blankline_indent = false,

View file

@ -2,21 +2,21 @@ 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,
-- },
{
"julienvincent/nvim-paredit",
"gpanders/nvim-parinfer",
ft = lisp_dialects,
config = function()
require("nvim-paredit").setup()
end
init = function()
vim.g.parinfer_force_balance = true
vim.g.parinfer_comment_chars = ";;"
end,
},
-- {
-- "julienvincent/nvim-paredit",
-- ft = lisp_dialects,
-- config = function()
-- require("nvim-paredit").setup()
-- end
-- },
{
"Olical/conjure",
ft = lisp_dialects,