diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-11-16 14:36:15 +0100 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2025-11-16 14:36:15 +0100 |
| commit | ab650693713ceeadf2c064b1024379e6a58a6878 (patch) | |
| tree | 62f4d6f17b86c474a7ee28b7d9de058f5d32d0fd /fnl/plugins/unison.fnl | |
| parent | 0d7ffc588f1971254fb271d3d211b396230ba552 (diff) | |
Diffstat (limited to 'fnl/plugins/unison.fnl')
| -rw-r--r-- | fnl/plugins/unison.fnl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/fnl/plugins/unison.fnl b/fnl/plugins/unison.fnl new file mode 100644 index 0000000..ba03ad7 --- /dev/null +++ b/fnl/plugins/unison.fnl @@ -0,0 +1,11 @@ +;; Unison lang support + +(λ config [plugin] + (vim.opt.rtp:append (.. plugin.dir :/editor-support/vim)) + ((. (require :lazy.core.loader) :packadd) (.. plugin.dir :/editor-support/vim))) + +(λ init [plugin] + ((. (require :lazy.core.loader) :ftdetect) (.. plugin.dir + :/editor-support/vim))) + +{1 :unisonweb/unison :branch :trunk : config : init} |