Compare commits

..

No commits in common. "a1a8d596edbd84f8edf640746c464cd18abda643" and "8c95b996c7828b0c3c1acea2b01486505fba68bb" have entirely different histories.

2 changed files with 5 additions and 11 deletions

6
flake.lock generated
View file

@ -1713,11 +1713,11 @@
"plugin-rustaceanvim": {
"flake": false,
"locked": {
"lastModified": 1732565373,
"narHash": "sha256-WRaNW0trZYEUKd05Uc+5nP+G81HI14d6lM7/WWz61E0=",
"lastModified": 1731172933,
"narHash": "sha256-B2AdSgGPANCBbVN+Sd7gvJ16ODZZwv4WSOxnRs3SWnk=",
"owner": "mrcjkb",
"repo": "rustaceanvim",
"rev": "fee0aa094b0c9f93fffe5a385b3d5d2386c2b072",
"rev": "244443311f1c4e34ec1ea7f219a4b682b6ec066e",
"type": "github"
},
"original": {

View file

@ -21,10 +21,7 @@
lspConfig = ''
lspconfig.typst_lsp.setup {
capabilities = capabilities,
on_attach = function(client, bufnr)
-- Disable semantic tokens as a workaround for a semantic token error when using non-english characters
client.server_capabilities.semanticTokensProvider = nil
end,
on_attach = default_on_attach,
cmd = ${
if isList cfg.lsp.package
then expToLua cfg.lsp.package
@ -39,10 +36,7 @@
lspconfig.tinymist.setup {
capabilities = capabilities,
single_file_support = true,
on_attach = function(client, bufnr)
-- Disable semantic tokens as a workaround for a semantic token error when using non-english characters
client.server_capabilities.semanticTokensProvider = nil
end,
on_attach = default_on_attach,
cmd = ${
if isList cfg.lsp.package
then expToLua cfg.lsp.package