Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Feb 19, 2024
1 parent 8c48890 commit d6f7dda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/conf/external_tools/lsp_servers/sourcekit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export const server = new LspServer({
capabilities: LuaTable
) => {
luaRequire("lspconfig").sourcekit.setup({
cmd: ["xcrun", "--toolchain", "swift", "sourcekit-lsp"],
// cmd: ["xcrun", "--toolchain", "swift", "sourcekit-lsp"],
cmd: [
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/sourcekit-lsp",
],
filetypes: ["swift", "objective-c", "objective-cpp"],
on_attach: on_attach,
capabilities: capabilities,
Expand Down
1 change: 1 addition & 0 deletions src/conf/plugins/other/rest-nvim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const spec: PluginOptsBase = {
skip_ssl_verification: true,
},
ft: ["http"],
cmd: ["RestNvim", "RestNvimPreview", "RestNvimLast"],
lazy: true,
dependencies: ["nvim-lua/plenary.nvim"],
config: (_, opts) => {
Expand Down

0 comments on commit d6f7dda

Please sign in to comment.