summaryrefslogtreecommitdiff
path: root/lua/lang/vue.lua
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-07-24 21:17:11 -0400
committerGitHub <[email protected]>2021-07-24 21:17:11 -0400
commit98f8a77819670ce6012216e01885c135a6d3a289 (patch)
treeb655da889c33e0eb89251878783700a8cd014a27 /lua/lang/vue.lua
parent0884dcd84670bc097c34253e983d2cde9c209dfa (diff)
New contract (#1080)
Changes to the global config object O is now lvim user_plugins is now plugins user_autocommands is now autocommands No more lang specific plugins Null-ls has replaced both formatter.nvim and nvim-lint
Diffstat (limited to 'lua/lang/vue.lua')
-rw-r--r--lua/lang/vue.lua71
1 files changed, 0 insertions, 71 deletions
diff --git a/lua/lang/vue.lua b/lua/lang/vue.lua
deleted file mode 100644
index 8725bba2..00000000
--- a/lua/lang/vue.lua
+++ /dev/null
@@ -1,71 +0,0 @@
-local M = {}
-
-M.config = function()
- O.lang.vue = {
- formatter = {
- exe = "prettier",
- args = {
- "--stdin-filepath",
- "${FILEPATH}",
- },
- stdin = true,
- },
- auto_import = true,
- lsp = {
- path = DATA_PATH .. "/lspinstall/vue/node_modules/.bin/vls",
- },
- }
-end
-
-M.format = function()
- vim.cmd "let proj = FindRootDirectory()"
- local root_dir = vim.api.nvim_get_var "proj"
-
- -- use the global formatter if you didn't find the local one
- local formatter_instance = root_dir .. "/node_modules/.bin/" .. O.lang.vue.formatter.exe
- if vim.fn.executable(formatter_instance) ~= 1 then
- formatter_instance = O.lang.vue.formatter.exe
- end
-
- local ft = vim.bo.filetype
- O.formatters.filetype[ft] = {
- function()
- local lv_utils = require "lv-utils"
- return {
- exe = formatter_instance,
- args = lv_utils.gsub_args(O.lang.vue.formatter.args),
- stdin = O.lang.vue.formatter.stdin,
- }
- end,
- }
- require("formatter.config").set_defaults {
- logging = false,
- filetype = O.formatters.filetype,
- }
-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 "vuels" then
- return
- end
-
- -- Vue language server configuration (vetur)
- require("lspconfig").vuels.setup {
- cmd = { O.lang.vue.lsp.path, "--stdio" },
- on_attach = require("lsp").common_on_attach,
- }
-
- require("lsp.ts-fmt-lint").setup()
-end
-
-M.dap = function()
- -- TODO: implement dap
- return "No DAP configured!"
-end
-
-return M