nvim: add separate config files for most plugins

This commit is contained in:
Moritz Böhme 2023-03-04 13:22:48 +01:00
parent 9db80c9673
commit 04dacde028
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
25 changed files with 294 additions and 291 deletions

View file

@ -0,0 +1,8 @@
require("copilot").setup({
suggestion = { enabled = false },
panel = { enabled = false },
})
vim.api.nvim_create_autocmd("VimEnter", {
desc = "Disable Copilot by default on startup",
command = "Copilot disable",
})