diff options
Diffstat (limited to 'dot_config/nvim/fnl/plugins/langs.fnl')
| -rw-r--r-- | dot_config/nvim/fnl/plugins/langs.fnl | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/dot_config/nvim/fnl/plugins/langs.fnl b/dot_config/nvim/fnl/plugins/langs.fnl index 21478a8..e785d98 100644 --- a/dot_config/nvim/fnl/plugins/langs.fnl +++ b/dot_config/nvim/fnl/plugins/langs.fnl @@ -1,4 +1,10 @@ (import-macros {:mixed-table ·} :toast.macros) + +(local lisps [:clojure + :fennel + :janet + :scm]) + ; language support [(· :nvim-treesitter/nvim-treesitter & :version false @@ -17,9 +23,9 @@ :version false :dependencies [:godlygeek/tabular] :ft :markdown) - ; helper for lisps + ; helpers for lisps (· :gpanders/nvim-parinfer & - :ft [:clojure - :fennel - :janet - :scm])] + :ft lisps) + (· :julienvincent/nvim-paredit & + :ft lisps + :config {:indent {:enabled true}})] |
