summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/lang/swift.lua
blob: 25c13f9e18e614d0eb257779941b13bd2fef9535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
local M = {}

M.config = function()
  O.lang.swift = {
    formatter = {
      exe = "swiftformat",
      args = {},
      stdin = true,
    },
    lsp = {
      path = "sourcekit-lsp",
    },
  }
end

M.format = function()
  -- TODO: implement formatter (if applicable)
  return "No formatter configured!"
end

M.lint = function()
  O.formatters.filetype["swift"] = {
    function()
      return {
        exe = O.lang.swift.formatter.exe,
        args = O.lang.swift.formatter.args,
        stdin = O.lang.swift.formatter.stdin,
      }
    end,
  }

  require("formatter.config").set_defaults {
    logging = false,
    filetype = O.formatters.filetype,
  }
end

M.lsp = function()
  if require("utils").check_lsp_client_active "sourcekit" then
    return
  end

  require("lspconfig").sourcekit.setup {
    cmd = { "xcrun", O.lang.swift.lsp.path },
    on_attach = require("lsp").common_on_attach,
    filetypes = { "swift" },
  }
end

M.dap = function()
  -- TODO: implement dap
  return "No DAP configured!"
end

return M