diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-11 23:56:11 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-08-11 23:56:11 +0200 |
commit | 0733ebb066c1831c1e461ad189816224fae2b919 (patch) | |
tree | 6dd636207c82c9c4eb3b3391c8f754f726aabca3 /fnl/plugins | |
parent | 67757d910c3de5a9ce8ab351c585f9be5bc623e5 (diff) |
Add support for elixir
Diffstat (limited to 'fnl/plugins')
-rw-r--r-- | fnl/plugins/conform.fnl | 1 | ||||
-rw-r--r-- | fnl/plugins/lsp/servers.fnl | 1 | ||||
-rw-r--r-- | fnl/plugins/treesitter.fnl | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/fnl/plugins/conform.fnl b/fnl/plugins/conform.fnl index 4fdf3f7..9608f5c 100644 --- a/fnl/plugins/conform.fnl +++ b/fnl/plugins/conform.fnl @@ -13,6 +13,7 @@ :formatters_by_ft {:* [:codespell] :_ [:trim_whitespace :trim_newlines] :css [:stylelint] + :elixir [:mix] :fennel [:fnlfmt] :haskell [:fourmolu] :html [:prettierd] diff --git a/fnl/plugins/lsp/servers.fnl b/fnl/plugins/lsp/servers.fnl index 0dbb16f..9f5cfcf 100644 --- a/fnl/plugins/lsp/servers.fnl +++ b/fnl/plugins/lsp/servers.fnl @@ -4,6 +4,7 @@ :clangd {} :cssls {} :dockerls {} + :elixirls {} :hls {} :html {} :jsonls {:init_options {:providerFormatter false} diff --git a/fnl/plugins/treesitter.fnl b/fnl/plugins/treesitter.fnl index 650f132..c8b3772 100644 --- a/fnl/plugins/treesitter.fnl +++ b/fnl/plugins/treesitter.fnl @@ -6,6 +6,7 @@ :c :comment :dockerfile + :elixir :fennel :graphql :haskell |