Compare commits

..

3 commits

Author SHA1 Message Date
616a13b1b0 update: julia-sysimages 2024-10-11 14:27:24 +09:00
3ea290ea58 fix(nvim): replace tsserver -> ts_ls since it's deprecated
- according to lspconfig
2024-10-11 14:26:47 +09:00
d8158947e5 update(nvim): update satysfi_ls config and its loading 2024-10-11 14:26:09 +09:00
3 changed files with 18 additions and 18 deletions

View file

@ -666,6 +666,7 @@ lspconfig.julials.setup {
]] } ]] }
} }
-- SATySFi -- SATySFi
require 'lspconfig.server_configurations.satysfi_ls'
lspconfig.satysfi_ls.setup { lspconfig.satysfi_ls.setup {
on_attach = on_attach, on_attach = on_attach,
capabilities = capabilities, capabilities = capabilities,
@ -713,7 +714,7 @@ lspconfig.rust_analyzer.setup {
} }
} }
local lss = { "pyright", "texlab", "ccls", "clangd", "tsserver", --[["tailwindcss"]] "hls", "cmake", local lss = { "pyright", "texlab", "ccls", "clangd", "ts_ls", --[["tailwindcss"]] "hls", "cmake",
"csharp_ls", "html", "r_language_server", "cssls", "jsonls", "sqls", "vhdl_ls", "ruff" } "csharp_ls", "html", "r_language_server", "cssls", "jsonls", "sqls", "vhdl_ls", "ruff" }
for _, ls in pairs(lss) do for _, ls in pairs(lss) do
lspconfig[ls].setup { lspconfig[ls].setup {

View file

@ -1,11 +1,11 @@
-- https://zenn.dev/monaqa/articles/2021-12-10-satysfi-language-server -- https://zenn.dev/monaqa/articles/2021-12-10-satysfi-language-server
local util = require 'lspconfig.util' local configs = require 'lspconfig.configs'
return { configs.satysfi_ls = {
default_config = { default_config = {
cmd = { 'satysfi-language-server' }, cmd = { 'satysfi-language-server' },
filetypes = { 'satysfi' }, filetypes = { 'satysfi' },
root_dir = util.root_pattern('.git'), root_dir = vim.fs.root(0, ".git"),
single_file_support = true, single_file_support = true,
}, },
docs = { docs = {
@ -18,4 +18,3 @@ return {
}, },
}, },
} }

@ -1 +1 @@
Subproject commit 21f32a2032614d2e923be436ca4a4f0f07a8cdc5 Subproject commit 98581abe7cb2baecd63e95c337da08778fec60ae