diff options
| author | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 00:00:45 -0800 |
|---|---|---|
| committer | José Juan Loeza Sierra <jj@xz6ze.com> | 2025-11-08 00:00:45 -0800 |
| commit | 3e32ab3574e5fbb7707c33a1843558e0b2915a0c (patch) | |
| tree | 293c35ac238f69086f9a521915b89146493151ba /dot-config/nvim/plugin/lsp.lua | |
| parent | 5dc89fe9789701abbe4a73c2998d397a6d7d964c (diff) | |
add typst lsp, formatter, and treesitter
Diffstat (limited to 'dot-config/nvim/plugin/lsp.lua')
| -rw-r--r-- | dot-config/nvim/plugin/lsp.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dot-config/nvim/plugin/lsp.lua b/dot-config/nvim/plugin/lsp.lua index 4b8a66b..5d26352 100644 --- a/dot-config/nvim/plugin/lsp.lua +++ b/dot-config/nvim/plugin/lsp.lua @@ -9,6 +9,7 @@ require("mason").setup() vim.lsp.enable({ "expert", -- elixir "lua_ls", -- lua + "tinymist", -- typst }) require("conform").setup({ @@ -16,6 +17,7 @@ require("conform").setup({ formatters_by_ft = { elixir = { "mix" }, lua = { "stylua" }, + typst = { "typstyle" }, }, format_on_save = { |
