diff options
author | Christian Segundo | 2025-01-14 18:32:11 +0100 |
---|---|---|
committer | Christian Segundo | 2025-01-14 18:32:11 +0100 |
commit | 8d325b417ad44481b5351d166ccefd26eee811de (patch) | |
tree | 0597e3d9308d3b872b5905bcd5ed2f703cda3544 /lua/plugins/lsp/efm-config.lua | |
parent | aa5f7dbe8da470007c016b12ee4572748b09a59a (diff) | |
download | config-8d325b417ad44481b5351d166ccefd26eee811de.tar.gz |
disable efm
Diffstat (limited to 'lua/plugins/lsp/efm-config.lua')
-rw-r--r-- | lua/plugins/lsp/efm-config.lua | 46 |
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, + }, } |