| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014 | 
							- CONFIG_PATH = os.getenv "HOME" .. "/.local/share/lunarvim/lvim"
 
- DATA_PATH = vim.fn.stdpath "data"
 
- CACHE_PATH = vim.fn.stdpath "cache"
 
- TERMINAL = vim.fn.expand "$TERMINAL"
 
- USER = vim.fn.expand "$USER"
 
- lvim = {
 
-   leader = "space",
 
-   colorscheme = "spacegray",
 
-   line_wrap_cursor_movement = true,
 
-   transparent_window = false,
 
-   format_on_save = true,
 
-   vsnip_dir = os.getenv "HOME" .. "/.config/snippets",
 
-   database = { save_location = "~/.config/lunarvim_db", auto_execute = 1 },
 
-   keys = {},
 
-   -- TODO why do we need this?
 
-   builtin = {
 
-     lspinstall = {},
 
-     telescope = {},
 
-     compe = {},
 
-     autopairs = {},
 
-     treesitter = {},
 
-     nvimtree = {},
 
-     gitsigns = {},
 
-     which_key = {},
 
-     comment = {},
 
-     rooter = {},
 
-     galaxyline = {},
 
-     bufferline = {},
 
-     dap = {},
 
-     dashboard = {},
 
-     terminal = {},
 
-   },
 
-   lsp = {
 
-     diagnostics = {
 
-       virtual_text = {
 
-         prefix = "",
 
-         spacing = 0,
 
-       },
 
-       signs = true,
 
-       underline = true,
 
-     },
 
-     override = {},
 
-     document_highlight = true,
 
-     popup_border = "single",
 
-     default_keybinds = true,
 
-     on_attach_callback = nil,
 
-   },
 
-   plugins = {
 
-     -- use lv-config.lua for this not put here
 
-   },
 
-   autocommands = {},
 
- }
 
- local schemas = nil
 
- local common_on_attach = require("lsp.service").common_on_attach
 
- local common_capabilities = require("lsp.service").common_capabilities()
 
- local status_ok, jsonls_settings = pcall(require, "nlspsettings.jsonls")
 
- if status_ok then
 
-   schemas = jsonls_settings.get_default_schemas()
 
- end
 
- -- TODO move all of this into lang specific files, only require when using
 
- lvim.lang = {
 
-   asm = {
 
-     formatter = {
 
-       exe = "asmfmt",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "",
 
-       setup = {},
 
-     },
 
-   },
 
-   beancount = {
 
-     formatter = {
 
-       exe = "bean_format",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "beancount",
 
-       setup = {
 
-         cmd = { "beancount-langserver" },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   c = {
 
-     formatter = {
 
-       exe = "clang_format",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {
 
-       "clangtidy",
 
-     },
 
-     lsp = {
 
-       provider = "clangd",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/cpp/clangd/bin/clangd",
 
-           "--background-index",
 
-           "--header-insertion=never",
 
-           "--cross-file-rename",
 
-           "--clang-tidy",
 
-           "--clang-tidy-checks=-*,llvm-*,clang-analyzer-*",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   cpp = {
 
-     formatter = {
 
-       exe = "clang_format",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {
 
-       "cppcheck",
 
-       "clangtidy",
 
-     },
 
-     lsp = {
 
-       provider = "clangd",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/cpp/clangd/bin/clangd",
 
-           "--background-index",
 
-           "--header-insertion=never",
 
-           "--cross-file-rename",
 
-           "--clang-tidy",
 
-           "--clang-tidy-checks=-*,llvm-*,clang-analyzer-*",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   crystal = {
 
-     formatter = {
 
-       exe = "crystal_format",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "crystalline",
 
-       setup = {
 
-         cmd = { "crystalline" },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   cs = {
 
-     formatter = {
 
-       exe = "clang_format",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "omnisharp",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/csharp/omnisharp/run",
 
-           "--languageserver",
 
-           "--hostPID",
 
-           tostring(vim.fn.getpid()),
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   cmake = {
 
-     formatter = {
 
-       exe = "cmake_format",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "cmake",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/cmake/venv/bin/cmake-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   clojure = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "clojure_lsp",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/clojure/clojure-lsp",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   css = {
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "cssls",
 
-       setup = {
 
-         cmd = {
 
-           "node",
 
-           DATA_PATH .. "/lspinstall/css/vscode-css/css-language-features/server/dist/node/cssServerMain.js",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   d = {
 
-     formatter = {
 
-       exe = "dfmt",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "serve_d",
 
-       setup = {
 
-         cmd = { "serve-d" },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   dart = {
 
-     formatter = {
 
-       exe = "dart_format",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "dartls",
 
-       setup = {
 
-         cmd = {
 
-           "dart",
 
-           "/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot",
 
-           "--lsp",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   docker = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "dockerls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/dockerfile/node_modules/.bin/docker-langserver",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   elixir = {
 
-     formatter = {
 
-       exe = "mix",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "elixirls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/elixir/elixir-ls/language_server.sh",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   elm = {
 
-     formatter = {
 
-       exe = "elm_format",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "elmls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-language-server",
 
-         },
 
-         on_attach = common_on_attach,
 
-         init_options = {
 
-           elmAnalyseTrigger = "change",
 
-           elmFormatPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-format",
 
-           elmPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/",
 
-           elmTestPath = DATA_PATH .. "/lspinstall/elm/node_modules/.bin/elm-test",
 
-         },
 
-       },
 
-     },
 
-   },
 
-   erlang = {
 
-     formatter = {
 
-       exe = "erlfmt",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "erlangls",
 
-       setup = {
 
-         cmd = {
 
-           "erlang_ls",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   emmet = { active = false },
 
-   fish = {
 
-     formatter = {
 
-       exe = "fish_indent",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "",
 
-       setup = {
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   go = {
 
-     formatter = {
 
-       exe = "gofmt",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {
 
-       "golangcilint",
 
-       "revive",
 
-     },
 
-     lsp = {
 
-       provider = "gopls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/go/gopls",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   graphql = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "graphql",
 
-       setup = {
 
-         cmd = {
 
-           "graphql-lsp",
 
-           "server",
 
-           "-m",
 
-           "stream",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   html = {
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "tidy",
 
-       -- https://docs.errata.ai/vale/scoping#html
 
-       "vale",
 
-     },
 
-     lsp = {
 
-       provider = "html",
 
-       setup = {
 
-         cmd = {
 
-           "node",
 
-           DATA_PATH .. "/lspinstall/html/vscode-html/html-language-features/server/dist/node/htmlServerMain.js",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   java = {
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = { "--stdin-filepath", vim.api.nvim_buf_get_name(0) },
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "jdtls",
 
-       setup = {
 
-         cmd = { DATA_PATH .. "/lspinstall/java/jdtls.sh" },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   json = {
 
-     formatter = {
 
-       exe = "json_tool",
 
-       args = {},
 
-       stdin = true,
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "jsonls",
 
-       setup = {
 
-         cmd = {
 
-           "node",
 
-           DATA_PATH .. "/lspinstall/json/vscode-json/json-language-features/server/dist/node/jsonServerMain.js",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-         settings = {
 
-           json = {
 
-             schemas = schemas,
 
-             --   = {
 
-             --   {
 
-             --     fileMatch = { "package.json" },
 
-             --     url = "https://json.schemastore.org/package.json",
 
-             --   },
 
-             -- },
 
-           },
 
-         },
 
-         commands = {
 
-           Format = {
 
-             function()
 
-               vim.lsp.buf.range_formatting({}, { 0, 0 }, { vim.fn.line "$", 0 })
 
-             end,
 
-           },
 
-         },
 
-       },
 
-     },
 
-   },
 
-   julia = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "julials",
 
-       setup = {
 
-         {
 
-           "julia",
 
-           "--startup-file=no",
 
-           "--history-file=no",
 
-           -- vim.fn.expand "~/.config/nvim/lua/lsp/julia/run.jl",
 
-           CONFIG_PATH .. "/utils/julia/run.jl",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   kotlin = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "kotlin_language_server",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/kotlin/server/bin/kotlin-language-server",
 
-         },
 
-         on_attach = common_on_attach,
 
-         root_dir = function(fname)
 
-           local util = require "lspconfig/util"
 
-           local root_files = {
 
-             "settings.gradle", -- Gradle (multi-project)
 
-             "settings.gradle.kts", -- Gradle (multi-project)
 
-             "build.xml", -- Ant
 
-             "pom.xml", -- Maven
 
-           }
 
-           local fallback_root_files = {
 
-             "build.gradle", -- Gradle
 
-             "build.gradle.kts", -- Gradle
 
-           }
 
-           return util.root_pattern(unpack(root_files))(fname) or util.root_pattern(unpack(fallback_root_files))(fname)
 
-         end,
 
-       },
 
-     },
 
-   },
 
-   lua = {
 
-     formatter = {
 
-       exe = "stylua",
 
-       args = {},
 
-     },
 
-     linters = { "luacheck" },
 
-     lsp = {
 
-       provider = "sumneko_lua",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/lua/sumneko-lua-language-server",
 
-           "-E",
 
-           DATA_PATH .. "/lspinstall/lua/main.lua",
 
-         },
 
-         on_attach = common_on_attach,
 
-         settings = {
 
-           Lua = {
 
-             runtime = {
 
-               -- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
 
-               version = "LuaJIT",
 
-               -- Setup your lua path
 
-               path = vim.split(package.path, ";"),
 
-             },
 
-             diagnostics = {
 
-               -- Get the language server to recognize the `vim` global
 
-               globals = { "vim", "lvim" },
 
-             },
 
-             workspace = {
 
-               -- Make the server aware of Neovim runtime files
 
-               library = {
 
-                 [vim.fn.expand "~/.local/share/lunarvim/lvim/lua"] = true,
 
-                 [vim.fn.expand "$VIMRUNTIME/lua"] = true,
 
-                 [vim.fn.expand "$VIMRUNTIME/lua/vim/lsp"] = true,
 
-               },
 
-               maxPreload = 100000,
 
-               preloadFileSize = 1000,
 
-             },
 
-           },
 
-         },
 
-       },
 
-     },
 
-   },
 
-   nginx = {
 
-     formatter = {
 
-       exe = "nginx_beautifier",
 
-       args = {
 
-         provider = "",
 
-         setup = {},
 
-       },
 
-     },
 
-     linters = {},
 
-     lsp = {},
 
-   },
 
-   perl = {
 
-     formatter = {
 
-       exe = "perltidy",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "",
 
-       setup = {},
 
-     },
 
-   },
 
-   sql = {
 
-     formatter = {
 
-       exe = "sqlformat",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "sqls",
 
-       setup = {
 
-         cmd = { "sqls" },
 
-       },
 
-     },
 
-   },
 
-   php = {
 
-     formatter = {
 
-       exe = "phpcbf",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "intelephense",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/php/node_modules/.bin/intelephense",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         filetypes = { "php", "phtml" },
 
-         settings = {
 
-           intelephense = {
 
-             environment = {
 
-               phpVersion = "7.4",
 
-             },
 
-           },
 
-         },
 
-       },
 
-     },
 
-   },
 
-   puppet = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "puppet",
 
-       setup = {
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   javascript = {
 
-     -- @usage can be prettier or eslint
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "eslint",
 
-     },
 
-     lsp = {
 
-       provider = "tsserver",
 
-       setup = {
 
-         cmd = {
 
-           -- TODO:
 
-           DATA_PATH .. "/lspinstall/typescript/node_modules/.bin/typescript-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   javascriptreact = {
 
-     -- @usage can be prettier or eslint
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "eslint",
 
-     },
 
-     lsp = {
 
-       provider = "tsserver",
 
-       setup = {
 
-         cmd = {
 
-           -- TODO:
 
-           DATA_PATH .. "/lspinstall/typescript/node_modules/.bin/typescript-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   python = {
 
-     -- @usage can be flake8 or yapf
 
-     formatter = {
 
-       exe = "black",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "flake8",
 
-       "pylint",
 
-       "mypy",
 
-     },
 
-     lsp = {
 
-       provider = "pyright",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/python/node_modules/.bin/pyright-langserver",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   -- R -e 'install.packages("formatR",repos = "http://cran.us.r-project.org")'
 
-   -- R -e 'install.packages("readr",repos = "http://cran.us.r-project.org")'
 
-   r = {
 
-     formatter = {
 
-       exe = "format_r",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "r_language_server",
 
-       setup = {
 
-         cmd = {
 
-           "R",
 
-           "--slave",
 
-           "-e",
 
-           "languageserver::run()",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   ruby = {
 
-     formatter = {
 
-       exe = "rufo",
 
-       args = {},
 
-     },
 
-     linters = { "ruby" },
 
-     lsp = {
 
-       provider = "solargraph",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/ruby/solargraph/solargraph",
 
-           "stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   rust = {
 
-     formatter = {
 
-       exe = "rustfmt",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "rust_analyzer",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/rust/rust-analyzer",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   scala = {
 
-     formatter = {
 
-       exe = "scalafmt",
 
-       args = {},
 
-     },
 
-     linters = { "" },
 
-     lsp = {
 
-       provider = "metals",
 
-       setup = {
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   sh = {
 
-     -- @usage can be 'shfmt'
 
-     formatter = {
 
-       exe = "shfmt",
 
-       args = {},
 
-     },
 
-     -- @usage can be 'shellcheck'
 
-     linters = { "shellcheck" },
 
-     lsp = {
 
-       provider = "bashls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/bash/node_modules/.bin/bash-language-server",
 
-           "start",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   svelte = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "svelte",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/svelte/node_modules/.bin/svelteserver",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   swift = {
 
-     formatter = {
 
-       exe = "swiftformat",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "sourcekit",
 
-       setup = {
 
-         cmd = {
 
-           "xcrun",
 
-           "sourcekit-lsp",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   tailwindcss = {
 
-     active = false,
 
-     filetypes = {
 
-       "html",
 
-       "css",
 
-       "scss",
 
-       "javascript",
 
-       "javascriptreact",
 
-       "typescript",
 
-       "typescriptreact",
 
-     },
 
-   },
 
-   terraform = {
 
-     formatter = {
 
-       exe = "terraform_fmt",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "terraformls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/terraform/terraform-ls",
 
-           "serve",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   tex = {
 
-     formatter = {
 
-       exe = "latexindent",
 
-       args = {},
 
-       stdin = false,
 
-     },
 
-     linters = { "chktex" },
 
-     lsp = {
 
-       provider = "texlab",
 
-       setup = {
 
-         cmd = { DATA_PATH .. "/lspinstall/latex/texlab" },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   typescript = {
 
-     -- @usage can be prettier or eslint
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "eslint",
 
-     },
 
-     lsp = {
 
-       provider = "tsserver",
 
-       setup = {
 
-         cmd = {
 
-           -- TODO:
 
-           DATA_PATH .. "/lspinstall/typescript/node_modules/.bin/typescript-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   typescriptreact = {
 
-     -- @usage can be prettier or eslint
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {
 
-       "eslint",
 
-     },
 
-     lsp = {
 
-       provider = "tsserver",
 
-       setup = {
 
-         cmd = {
 
-           -- TODO:
 
-           DATA_PATH .. "/lspinstall/typescript/node_modules/.bin/typescript-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   vim = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-     },
 
-     linters = { "" },
 
-     lsp = {
 
-       provider = "vimls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/vim/node_modules/.bin/vim-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   vue = {
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "vuels",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/vue/node_modules/.bin/vls",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   yaml = {
 
-     formatter = {
 
-       exe = "prettier",
 
-       args = {},
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "yamlls",
 
-       setup = {
 
-         cmd = {
 
-           DATA_PATH .. "/lspinstall/yaml/node_modules/.bin/yaml-language-server",
 
-           "--stdio",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
-   zig = {
 
-     formatter = {
 
-       exe = "",
 
-       args = {},
 
-       stdin = false,
 
-     },
 
-     linters = {},
 
-     lsp = {
 
-       provider = "zls",
 
-       setup = {
 
-         cmd = {
 
-           "zls",
 
-         },
 
-         on_attach = common_on_attach,
 
-         capabilities = common_capabilities,
 
-       },
 
-     },
 
-   },
 
- }
 
- require("core.which-key").config()
 
- require "core.status_colors"
 
- require("core.gitsigns").config()
 
- require("core.compe").config()
 
- require("core.dashboard").config()
 
- require("core.dap").config()
 
- require("core.terminal").config()
 
- require("core.telescope").config()
 
- require("core.treesitter").config()
 
- require("core.nvimtree").config()
 
 
  |