mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
219 B
Lua
10 lines
219 B
Lua
-- https://github.com/github/copilot.vim
|
|
local status_ok = pcall(require, "copilot")
|
|
if not status_ok then
|
|
return
|
|
end
|
|
|
|
vim.g.copilot_no_tab_map = true
|
|
vim.g.copilot_assume_mapped = true
|
|
vim.g.copilot_tab_fallback = ""
|