diff options
author | christianchiarulli <[email protected]> | 2021-07-18 14:10:19 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-18 14:10:19 -0400 |
commit | b797c2398fafaaa3e5f81d9e1630a41240a31bf8 (patch) | |
tree | 3dd23047f7fd09a4b13d4728696751b4f685f3fe /lua/lang/swift.lua | |
parent | a3f3f3b60cf675e3a80d3285dff136d193cfbb53 (diff) | |
parent | 6f9c521e227b1c4d3741cb73ee0a9598be73ef10 (diff) |
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'lua/lang/swift.lua')
-rw-r--r-- | lua/lang/swift.lua | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/lua/lang/swift.lua b/lua/lang/swift.lua new file mode 100644 index 00000000..69254caa --- /dev/null +++ b/lua/lang/swift.lua @@ -0,0 +1,52 @@ +local M = {} + +M.config = function() + O.lang.swift = { + formatter = { + exe = "swiftformat", + args = {}, + stdin = true, + }, + } +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("lv-utils").check_lsp_client_active "sourcekit" then + return + end + + require("lspconfig").sourcekit.setup { + cmd = { "xcrun", "sourcekit-lsp" }, + on_attach = require("lsp").common_on_attach, + filetypes = { "swift" }, + } +end + +M.dap = function() + -- TODO: implement dap + return "No DAP configured!" +end + +return M |