mirror of
https://github.com/zoriya/flake.git
synced 2025-12-05 22:26:21 +00:00
Disable on type formatting of biome
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
vim.api.nvim_create_autocmd('LspAttach', {
|
||||
callback = function(args)
|
||||
local client_id = args.data.client_id
|
||||
local client = assert(vim.lsp.get_client_by_id(client_id))
|
||||
if client.name == 'biome' then
|
||||
vim.lsp.on_type_formatting.enable(false, { client_id = client_id })
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
return {
|
||||
-- Disable lunching from node_modules (no nix binary)
|
||||
cmd = { "biome", "lsp-proxy" },
|
||||
|
||||
Reference in New Issue
Block a user