lsp: rust no longer uses clippy, remove solidity
This commit is contained in:
parent
08d8bf7209
commit
0a95bed483
|
@ -63,24 +63,14 @@ return {
|
||||||
'folke/neodev.nvim',
|
'folke/neodev.nvim',
|
||||||
},
|
},
|
||||||
|
|
||||||
config = function ()
|
config = function()
|
||||||
local servers = {
|
local servers = {
|
||||||
-- clangd = {},
|
-- clangd = {},
|
||||||
-- gopls = {},
|
-- gopls = {},
|
||||||
marksman = {},
|
marksman = {},
|
||||||
pyright = {},
|
pyright = {},
|
||||||
tsserver = {},
|
tsserver = {},
|
||||||
solc = {},
|
rust_analyzer = {},
|
||||||
|
|
||||||
rust_analyzer = {
|
|
||||||
checkOnSave = {
|
|
||||||
allFeatures = true,
|
|
||||||
overrideCommand = {
|
|
||||||
'cargo', 'clippy', '--workspace', '--message-format=json',
|
|
||||||
'--all-targets', '--all-features'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
workspace = { checkThirdParty = false },
|
workspace = { checkThirdParty = false },
|
||||||
|
@ -123,7 +113,7 @@ return {
|
||||||
|
|
||||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||||
|
|
||||||
config = function ()
|
config = function()
|
||||||
local null_ls = require("null-ls")
|
local null_ls = require("null-ls")
|
||||||
|
|
||||||
null_ls.setup({
|
null_ls.setup({
|
||||||
|
|
Loading…
Reference in New Issue