lock fidget to legacy
This commit is contained in:
parent
76182ae8a0
commit
fc4ff784bf
8
init.lua
8
init.lua
|
@ -49,6 +49,7 @@ vim.g.copilot_filetypes = {
|
|||
["*"] = false,
|
||||
["c"] = true,
|
||||
["c++"] = true,
|
||||
["cpp"] = true,
|
||||
["go"] = true,
|
||||
["javascript"] = true,
|
||||
["typescript"] = true,
|
||||
|
@ -102,7 +103,12 @@ require('lazy').setup({
|
|||
|
||||
-- Useful status updates for LSP
|
||||
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
|
||||
{ 'j-hui/fidget.nvim', opts = {} },
|
||||
{
|
||||
'j-hui/fidget.nvim',
|
||||
requires = { 'neovim/nvim-lspconfig' },
|
||||
tag = 'legacy',
|
||||
config = true,
|
||||
},
|
||||
|
||||
-- Additional lua configuration, makes nvim stuff amazing!
|
||||
'folke/neodev.nvim',
|
||||
|
|
Loading…
Reference in New Issue