diff options
author | sefidel <contact@sefidel.net> | 2023-09-03 15:41:39 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-09-03 15:41:39 +0900 |
commit | e6a83f433112874b1c9da502849bbf4a085421c0 (patch) | |
tree | 72787098c13e13d99b5590a775fdcfe5ace2ccc9 /fnl | |
parent | e7d25c121c44006e798892041425c8ca940285e1 (diff) | |
download | nvimrc-e6a83f433112874b1c9da502849bbf4a085421c0.tar.gz nvimrc-e6a83f433112874b1c9da502849bbf4a085421c0.zip |
feat(packs/autopairs): remove singlequote for lisp
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/packs/autopairs.fnl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fnl/nvrc/packs/autopairs.fnl b/fnl/nvrc/packs/autopairs.fnl index 77749c8..5d1b447 100644 --- a/fnl/nvrc/packs/autopairs.fnl +++ b/fnl/nvrc/packs/autopairs.fnl @@ -1,3 +1,5 @@ -(local {: setup} (require :nvim-autopairs)) +(local {: setup : get_rules} (require :nvim-autopairs)) (setup {:check_ts true}) + +(tset (. (get_rules "'") 1) :not_filetypes [:scheme :lisp]) |