Disable copilot for some files

This commit is contained in:
ViViDboarder 2024-11-13 10:09:16 -08:00
parent 90fe86fcc5
commit e2c10e5f3b

View File

@ -1,20 +1,30 @@
local utils = require("utils")
local M = {}
-- Accept copilot suggestion
function M.copilot_accept()
local suggest = vim.fn["copilot#GetDisplayedSuggestion"]()
if next(suggest.item) ~= nil then
print("accept cp")
return vim.fn["copilot#Accept"]("\\<CR>")
else
return utils.t("<Right>")
end
end
M.setup = function()
function M.setup()
-- Replace keymap for copilot to accept with <C-F> and <Right>, similar to fish shell
vim.g.copilot_no_tab_map = false
utils.keymap_set("i", "<C-F>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
utils.keymap_set("i", "<Right>", M.copilot_accept, { expr = true, replace_keycodes = false, noremap = true })
-- Create autocmd to disable copilot for certain filetypes that may contain sensitive information
vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
pattern = { ".env*", "*secret*", "*API_KEY*", "*TOKEN*" },
command = "let b:copilot_enabled = 0",
group = vim.api.nvim_create_augroup("CopilotDisable", {
clear = true,
}),
})
end
M.setup()