diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-05 14:21:05 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-05 14:21:05 +0100 |
commit | ba5400946e9ee19dce851e91a36bb1670d265233 (patch) | |
tree | d0b80efd53111ee097bb52763097be22adfb04cf /fnl/plugins | |
parent | fdff316fff423dd37a093ce1fff1ab289533305c (diff) |
Fix loading of plugins
Diffstat (limited to 'fnl/plugins')
-rw-r--r-- | fnl/plugins/init.fnl | 10 | ||||
-rw-r--r-- | fnl/plugins/lsp/init.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/treesitter.fnl | 2 |
3 files changed, 13 insertions, 1 deletions
diff --git a/fnl/plugins/init.fnl b/fnl/plugins/init.fnl new file mode 100644 index 0000000..470776e --- /dev/null +++ b/fnl/plugins/init.fnl @@ -0,0 +1,10 @@ +;; Load all plugins. + +(let [plugins [] + path (.. (vim.fn.stdpath :config) :/fnl/plugins)] + (each [fname (vim.fs.dir path)] + (let [fname (fname:match "^(.*)%.fnl$")] + (if (and (not= fname nil) (not= fname :init)) + (table.insert plugins (require (.. :plugins. fname)))))) + (table.insert plugins (require :plugins.lsp)) + plugins) diff --git a/fnl/plugins/lsp/init.fnl b/fnl/plugins/lsp/init.fnl index c06a5aa..f04ba86 100644 --- a/fnl/plugins/lsp/init.fnl +++ b/fnl/plugins/lsp/init.fnl @@ -1 +1,3 @@ ;; Lsp plugins. + +[(require :plugins.lsp.lspconfig) (require :plugins.lsp.mason)] diff --git a/fnl/plugins/treesitter.fnl b/fnl/plugins/treesitter.fnl index 103948d..c863f03 100644 --- a/fnl/plugins/treesitter.fnl +++ b/fnl/plugins/treesitter.fnl @@ -80,5 +80,5 @@ {1 :nvim-treesitter/nvim-treesitter :dependencies [{1 :nvim-treesitter/nvim-treesitter-textobjects :lazy true}] :build ":TSUpdate" - :event [:BufReadPost :BufNewFile] + :event [:VeryLazy] : config} |