summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorChristian Segundo2025-01-14 18:32:11 +0100
committerChristian Segundo2025-01-14 18:32:11 +0100
commit8d325b417ad44481b5351d166ccefd26eee811de (patch)
tree0597e3d9308d3b872b5905bcd5ed2f703cda3544 /lua
parentaa5f7dbe8da470007c016b12ee4572748b09a59a (diff)
downloadconfig-8d325b417ad44481b5351d166ccefd26eee811de.tar.gz
disable efm
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/lsp/efm-config.lua46
1 files changed, 23 insertions, 23 deletions
diff --git a/lua/plugins/lsp/efm-config.lua b/lua/plugins/lsp/efm-config.lua
index a6d8e40..bf3c330 100644
--- a/lua/plugins/lsp/efm-config.lua
+++ b/lua/plugins/lsp/efm-config.lua
@@ -1,26 +1,26 @@
return {
- {
- "creativenull/efmls-configs-nvim",
- dependencies = { "neovim/nvim-lspconfig" },
- },
+ -- {
+ -- "creativenull/efmls-configs-nvim",
+ -- dependencies = { "neovim/nvim-lspconfig" },
+ -- },
- {
- "neovim/nvim-lspconfig",
- opts = function(_, opts)
- if type(opts) == "table" then
- opts.servers = opts.servers or {}
- opts.servers.efm =
- vim.tbl_deep_extend("error", opts.servers.efm or {}, {
- settings = {
- version = 2,
- rootMarkers = { ".git/" },
- },
- init_options = {
- documentFormatting = true,
- documentRangeFormatting = true,
- },
- })
- end
- end,
- },
+ {
+ "neovim/nvim-lspconfig",
+ opts = function(_, opts)
+ if type(opts) == "table" then
+ opts.servers = opts.servers or {}
+ -- opts.servers.efm =
+ -- vim.tbl_deep_extend("error", opts.servers.efm or {}, {
+ -- settings = {
+ -- version = 2,
+ -- rootMarkers = { ".git/" },
+ -- },
+ -- init_options = {
+ -- documentFormatting = true,
+ -- documentRangeFormatting = true,
+ -- },
+ -- })
+ end
+ end,
+ },
}