Enable github copilot in all file types

This commit is contained in:
Pavle Portic 2024-02-27 23:18:45 +01:00
parent 2b128df261
commit 4b0f1cf600
Signed by: TheEdgeOfRage
GPG Key ID: 66AD4BA646FBC0D2
1 changed files with 9 additions and 1 deletions

View File

@ -39,7 +39,15 @@ return {
"lambdalisue/suda.vim",
"xiyaowong/nvim-cursorword",
"ahmedkhalf/project.nvim",
"github/copilot.vim",
{
"github/copilot.vim",
config = function()
vim.g.copilot_filetypes = {
["*"] = true,
["markdown"] = true,
}
end,
},
"mfussenegger/nvim-dap",
"rcarriga/nvim-dap-ui",
{