14 lines
300 B
Lua
14 lines
300 B
Lua
|
local lspconfig = require('lspconfig')
|
||
|
lspconfig.pyright.setup {}
|
||
|
lspconfig.tsserver.setup {}
|
||
|
lspconfig.rust_analyzer.setup {
|
||
|
-- Server-specific settings. See `:help lspconfig-setup`
|
||
|
settings = {
|
||
|
['rust-analyzer'] = {
|
||
|
check = {
|
||
|
command = "clippy",
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
}
|