add scala and sbt support (#986)

This commit is contained in:
Abouzar Parvan 2021-07-17 02:56:29 +04:30 committed by GitHub
parent cf0a558fe5
commit fe48ed9ef9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 98 additions and 0 deletions

View file

@ -249,12 +249,19 @@ return require("packer").startup(function(use)
},
}
-- Java
use {
"mfussenegger/nvim-jdtls",
-- ft = { "java" },
disable = not O.lang.java.java_tools.active,
}
-- Scala
use {
"scalameta/nvim-metals",
disable = not O.lang.scala.metals.active,
}
-- Install user plugins
for _, plugin in pairs(O.user_plugins) do
packer.use(plugin)