Add lunarvim config

This commit is contained in:
2024-02-05 09:18:08 -04:00
parent d1f492f218
commit 4291b4c5db
2 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,16 @@
-- Read the docs: https://www.lunarvim.org/docs/configuration
-- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6
-- Forum: https://www.reddit.com/r/lunarvim/
-- Discord: https://discord.com/invite/Xb9B4Ny
lvim.plugins = {
{ "zbirenbaum/copilot.lua",
cmd = "Copilot",
lazy = false,
config = function()
require("copilot").setup({
})
end,
}
}