aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/copilot.lua32
1 files changed, 0 insertions, 32 deletions
diff --git a/nvim/lua/plugins/copilot.lua b/nvim/lua/plugins/copilot.lua
deleted file mode 100644
index ed0ec8f..0000000
--- a/nvim/lua/plugins/copilot.lua
+++ /dev/null
@@ -1,32 +0,0 @@
1return {
2 "github/copilot.vim",
3 enabled = false,
4
5 event = "InsertEnter",
6 init = function()
7 -- vim.g.copilot_no_tab_map = true
8
9 vim.g.copilot_filetypes = {
10 ["*"] = false, -- Standardmäßig aus, ...
11
12 -- außer für diese Dateitypen:
13 lua = true,
14 python = true,
15 javascript = true,
16 typescript = true,
17 go = true,
18 cpp = true,
19 c = true,
20 rust = true,
21 java = true,
22 html = true,
23 css = true,
24 markdown = true,
25 sh = true,
26 }
27 end,
28 config = function()
29 local keymaps = require("config.keymaps")
30 keymaps.copilot()
31 end,
32}