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,
|
["*"] = false,
|
||||||
["c"] = true,
|
["c"] = true,
|
||||||
["c++"] = true,
|
["c++"] = true,
|
||||||
|
["cpp"] = true,
|
||||||
["go"] = true,
|
["go"] = true,
|
||||||
["javascript"] = true,
|
["javascript"] = true,
|
||||||
["typescript"] = true,
|
["typescript"] = true,
|
||||||
|
@ -102,7 +103,12 @@ require('lazy').setup({
|
||||||
|
|
||||||
-- Useful status updates for LSP
|
-- Useful status updates for LSP
|
||||||
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
|
-- 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!
|
-- Additional lua configuration, makes nvim stuff amazing!
|
||||||
'folke/neodev.nvim',
|
'folke/neodev.nvim',
|
||||||
|
|
Loading…
Reference in New Issue