Compare commits

..

No commits in common. "c7f3f3bb17bf798b4b71cf544469f6064671ffbe" and "327b4e03e8604955b4113447cceaab1799b28d44" have entirely different histories.

View File

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