diff options
author | mhsn <mail@mhsn.net> | 2025-03-19 23:33:14 +0000 |
---|---|---|
committer | mhsn <mail@mhsn.net> | 2025-03-19 23:33:14 +0000 |
commit | 677401974d53507ee0cc2aca5ce15f888e81d2ed (patch) | |
tree | 597f286a5e053cc9e696f618d3191b58da0735f4 | |
parent | 0b0e56d6e6755ae40dc8f69f832c3aee15fb6bd1 (diff) | |
download | nvim-677401974d53507ee0cc2aca5ce15f888e81d2ed.tar.gz nvim-677401974d53507ee0cc2aca5ce15f888e81d2ed.zip |
add tinymist lsp config
-rw-r--r-- | lua/plugins/mason.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/plugins/mason.lua b/lua/plugins/mason.lua index 01132d7..b978eaa 100644 --- a/lua/plugins/mason.lua +++ b/lua/plugins/mason.lua @@ -13,6 +13,11 @@ return { function(lsp) require("lspconfig")[lsp].setup({}) end, + ["tinymist"] = function() + require("lspconfig")["tinymist"].setup({ + settings = { formatterMode = "typstyle" }, + }) + end, }, }) end, |