fix: conform.nvim option change
This commit is contained in:
parent
78c13f0c98
commit
a09d2b94ef
2 changed files with 25 additions and 0 deletions
|
@ -22,4 +22,6 @@
|
||||||
./treesitter.nix
|
./treesitter.nix
|
||||||
./which-key.nix
|
./which-key.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
plugins.web-devicons.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,25 @@
|
||||||
plugins.conform-nvim = {
|
plugins.conform-nvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
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 = ''
|
format_after_save = ''
|
||||||
function(bufnr)
|
function(bufnr)
|
||||||
if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then
|
if vim.g.disable_autoformat or vim.b[bufnr].disable_autoformat then
|
||||||
|
@ -43,4 +62,8 @@
|
||||||
taplo
|
taplo
|
||||||
yq
|
yq
|
||||||
];
|
];
|
||||||
|
|
||||||
|
extraConfigLuaPre = ''
|
||||||
|
local slow_format_filetypes = { "scala" }
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue