diff options
Diffstat (limited to '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, + }, } |