This commit is contained in:
LinlyBoi
2022-12-03 20:55:20 +02:00
parent 9888691dd7
commit d39808b103
4 changed files with 10 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ local on_attach = require("plugins.configs.lspconfig").on_attach
local capabilities = require("plugins.configs.lspconfig").capabilities
local lspconfig = require "lspconfig"
local servers = { "html", "cssls", "clangd","tsserver","angularls","rust_analyzer","rustfmt",}
local servers = { "html", "cssls", "clangd","tsserver","angularls","rust_analyzer","rustfmt","r_language_server",}
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
@@ -49,4 +49,3 @@ require('lspconfig')['rustfmt'].setup{
on_attach = on_attach,
flags = lsp_flags,
}