diff --git a/init.lua b/init.lua index 64e006d..51fc394 100644 --- a/init.lua +++ b/init.lua @@ -47,7 +47,7 @@ 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',tag = 'legacy', opts = {} }, -- Additional lua configuration, makes nvim stuff amazing! 'folke/neodev.nvim', diff --git a/lua/custom/plugins/copilot.lua b/lua/custom/plugins/copilot.lua index b49c1cc..a77ccb3 100644 --- a/lua/custom/plugins/copilot.lua +++ b/lua/custom/plugins/copilot.lua @@ -1,12 +1,5 @@ return { - "zbirenbaum/copilot.lua", - cmd = "Copilot", - event = "InsertEnter", + "github/copilot.vim", config = function() - require("copilot").setup({ - filetypes = { - ["*"] = true, - }, - }) end, }