change spinner
This commit is contained in:
parent
98860b4d76
commit
9c0cdd3249
|
|
@ -29,7 +29,11 @@ return {
|
||||||
require("neodev").setup()
|
require("neodev").setup()
|
||||||
|
|
||||||
-- Turn on LSP status information
|
-- Turn on LSP status information
|
||||||
require("fidget").setup()
|
require("fidget").setup({
|
||||||
|
text = {
|
||||||
|
spinner = "meter",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
-- Set up cool signs for diagnostics
|
-- Set up cool signs for diagnostics
|
||||||
local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " }
|
local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " }
|
||||||
|
|
@ -147,8 +151,10 @@ return {
|
||||||
vim.keymap.set("n", "<Leader>a", rt.code_action_group.code_action_group, {buffer = bufnr})
|
vim.keymap.set("n", "<Leader>a", rt.code_action_group.code_action_group, {buffer = bufnr})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
inlay_hints = {
|
tools = {
|
||||||
auto = false,
|
inlay_hints = {
|
||||||
|
auto = false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue