summaryrefslogtreecommitdiff
path: root/lua/lang/svelte.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-18 14:10:19 -0400
committerchristianchiarulli <[email protected]>2021-07-18 14:10:19 -0400
commitb797c2398fafaaa3e5f81d9e1630a41240a31bf8 (patch)
tree3dd23047f7fd09a4b13d4728696751b4f685f3fe /lua/lang/svelte.lua
parenta3f3f3b60cf675e3a80d3285dff136d193cfbb53 (diff)
parent6f9c521e227b1c4d3741cb73ee0a9598be73ef10 (diff)
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'lua/lang/svelte.lua')
-rw-r--r--lua/lang/svelte.lua35
1 files changed, 35 insertions, 0 deletions
diff --git a/lua/lang/svelte.lua b/lua/lang/svelte.lua
new file mode 100644
index 00000000..220c2c18
--- /dev/null
+++ b/lua/lang/svelte.lua
@@ -0,0 +1,35 @@
+local M = {}
+
+M.config = function()
+ O.lang.svelte = {}
+end
+
+M.format = function()
+ -- TODO: implement formatter (if applicable)
+ return "No formatter configured!"
+end
+
+M.lint = function()
+ -- TODO: implement linters (if applicable)
+ return "No linters configured!"
+end
+
+M.lsp = function()
+ if require("lv-utils").check_lsp_client_active "svelte" then
+ return
+ end
+
+ require("lspconfig").svelte.setup {
+ cmd = { DATA_PATH .. "/lspinstall/svelte/node_modules/.bin/svelteserver", "--stdio" },
+ filetypes = { "svelte" },
+ root_dir = require("lspconfig.util").root_pattern("package.json", ".git"),
+ on_attach = require("lsp").common_on_attach,
+ }
+end
+
+M.dap = function()
+ -- TODO: implement dap
+ return "No DAP configured!"
+end
+
+return M