change spinner

This commit is contained in:
Robot 2023-11-03 13:43:11 -07:00
parent 98860b4d76
commit 9c0cdd3249
1 changed files with 9 additions and 3 deletions

View File

@ -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,
}, },
tools = {
inlay_hints = { inlay_hints = {
auto = false, auto = false,
},
} }
}) })
end, end,