lock fidget to legacy

This commit is contained in:
Jacob Hoopes 2023-06-30 15:21:33 -06:00 committed by ninp0
parent 76182ae8a0
commit fc4ff784bf
No known key found for this signature in database
GPG Key ID: BE3BFB8DB0831F93
1 changed files with 7 additions and 1 deletions

View File

@ -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',