From a09d2b94efb5e2d801275a244eedaab0816f3702 Mon Sep 17 00:00:00 2001 From: xinyangli Date: Sun, 3 Nov 2024 22:03:01 +0800 Subject: [PATCH] fix: conform.nvim option change --- config/default.nix | 2 ++ config/lsp/conform.nix | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/config/default.nix b/config/default.nix index a894c07..2ba6591 100644 --- a/config/default.nix +++ b/config/default.nix @@ -22,4 +22,6 @@ ./treesitter.nix ./which-key.nix ]; + + plugins.web-devicons.enable = true; } diff --git a/config/lsp/conform.nix b/config/lsp/conform.nix index c55e7e8..dd31e8f 100644 --- a/config/lsp/conform.nix +++ b/config/lsp/conform.nix @@ -3,6 +3,25 @@ plugins.conform-nvim = { enable = true; settings = { + format_on_save = '' + function(bufnr) + if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then + return + end + + if slow_format_filetypes[vim.bo[bufnr].filetype] then + return + end + + local function on_format(err) + if err and err:match("timeout$") then + slow_format_filetypes[vim.bo[bufnr].filetype] = true + end + end + + return { timeout_ms = 200, lsp_fallback = true }, on_format + end + ''; format_after_save = '' function(bufnr) if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then @@ -43,4 +62,8 @@ taplo yq ]; + + extraConfigLuaPre = '' + local slow_format_filetypes = { "scala" } + ''; }