aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/copilot.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/nvim/lua/plugins/copilot.lua b/nvim/lua/plugins/copilot.lua
new file mode 100644
index 0000000..2935745
--- /dev/null
+++ b/nvim/lua/plugins/copilot.lua
@@ -0,0 +1,8 @@
+return {
+ 'github/copilot.vim',
+ enabled = false,
+ -- ft =
+ config = function()
+ vim.cmd[[Copilot setup]]
+ end
+}