Skip to content

Commit d6f7dda

Browse files
committed
update
1 parent 8c48890 commit d6f7dda

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/conf/external_tools/lsp_servers/sourcekit.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ export const server = new LspServer({
99
capabilities: LuaTable
1010
) => {
1111
luaRequire("lspconfig").sourcekit.setup({
12-
cmd: ["xcrun", "--toolchain", "swift", "sourcekit-lsp"],
12+
// cmd: ["xcrun", "--toolchain", "swift", "sourcekit-lsp"],
13+
cmd: [
14+
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/sourcekit-lsp",
15+
],
1316
filetypes: ["swift", "objective-c", "objective-cpp"],
1417
on_attach: on_attach,
1518
capabilities: capabilities,

src/conf/plugins/other/rest-nvim.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const spec: PluginOptsBase = {
4545
skip_ssl_verification: true,
4646
},
4747
ft: ["http"],
48+
cmd: ["RestNvim", "RestNvimPreview", "RestNvimLast"],
4849
lazy: true,
4950
dependencies: ["nvim-lua/plenary.nvim"],
5051
config: (_, opts) => {

0 commit comments

Comments
 (0)