Compare commits

..

2 Commits

Author SHA1 Message Date
c7f3f3bb17
Disabled injected formatter 2024-06-13 23:39:49 +02:00
b578e7bfd4
Fixed issue with clangd 2024-06-13 23:39:00 +02:00

View File

@ -2,7 +2,9 @@ local tools = {}
-- https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md
tools.servers = {
clangd = {},
clangd = {
cmd = { "clangd", "--offset-encoding=utf-16", "--clang-tidy" },
},
gopls = {},
pyright = {},
rust_analyzer = {
@ -65,7 +67,7 @@ tools.formatters = require("util.conform").assign_formatters({
json = { "jq" },
toml = { "taplo" },
nix = { "nixfmt" },
["*"] = { "injected" },
-- ["*"] = { "injected" },
["_"] = { "trim_whitespace", "trim_newlines" },
})