diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-06-15 08:27:33 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-06-15 08:27:33 +0200 |
| commit | fa4c1b824baa744562679f25715e7027c7704ab8 (patch) | |
| tree | 8ad1499a9290338eb64dafe704aa4561d740d591 /nvim/lua/plugins/copilot.lua | |
| parent | 2d4a82ab20c70787a2af2f5b31233e6df41cdcd6 (diff) | |
| download | dotfiles-fa4c1b824baa744562679f25715e7027c7704ab8.tar.gz dotfiles-fa4c1b824baa744562679f25715e7027c7704ab8.tar.bz2 dotfiles-fa4c1b824baa744562679f25715e7027c7704ab8.zip | |
feat: remove copilot plugin, keymaps and statusline indicator
Diffstat (limited to 'nvim/lua/plugins/copilot.lua')
| -rw-r--r-- | nvim/lua/plugins/copilot.lua | 32 |
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 @@ | |||
| 1 | return { | ||
| 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 | } | ||
