mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-26 10:48:45 +02:00
feat(scala-extra): Use noice for progress and add minimal keybinding (#3348)
* Use fidget for progress and add minimal keybinding * remove figest, noice works already * make keybinding only available for scala filetypes
This commit is contained in:
parent
80c9dcaabe
commit
de57894158
1 changed files with 19 additions and 1 deletions
|
@ -26,7 +26,7 @@ return {
|
||||||
ft = { "scala", "sbt", "java" },
|
ft = { "scala", "sbt", "java" },
|
||||||
init = function()
|
init = function()
|
||||||
local metals_config = require("metals").bare_config()
|
local metals_config = require("metals").bare_config()
|
||||||
metals_config.init_options.statusBarProvider = "on"
|
metals_config.init_options.statusBarProvider = "off"
|
||||||
metals_config.settings = {
|
metals_config.settings = {
|
||||||
showImplicitArguments = true,
|
showImplicitArguments = true,
|
||||||
excludedPackages = { "akka.actor.typed.javadsl", "com.github.swagger.akka.javadsl" },
|
excludedPackages = { "akka.actor.typed.javadsl", "com.github.swagger.akka.javadsl" },
|
||||||
|
@ -70,6 +70,24 @@ return {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<leader>me",
|
||||||
|
function()
|
||||||
|
require("telescope").extensions.metals.commands()
|
||||||
|
end,
|
||||||
|
desc = "Metals commands",
|
||||||
|
ft = { "scala", "sbt", "java" },
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>mc",
|
||||||
|
function()
|
||||||
|
require("metals").compile_cascade()
|
||||||
|
end,
|
||||||
|
desc = "Metals compile cascade",
|
||||||
|
ft = { "scala", "sbt", "java" },
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue