From 0d22d7fa46e15371db48da0dde149b0717309a4c Mon Sep 17 00:00:00 2001 From: Proctor Date: Tue, 18 Apr 2023 19:15:30 -0500 Subject: [PATCH] neovim - paredit smartjump enable --- nvim/.config/nvim/fnl/dotfiles/plugin/paredit.fnl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/paredit.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/paredit.fnl index cd9175f..77dff9b 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/paredit.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/paredit.fnl @@ -7,6 +7,8 @@ ts-utils nvim-treesitter.ts_utils languagetree vim.treesitter.languagetree}}) +(set nvim.g.paredit_smartjump 1) + (defn list-member? [xs x] (a.some #(= x $1) (a.vals xs))) (defn bool->int [bool] (if bool 1 0))