-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50b363c
commit 2208c2f
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-- Plugin copilot-chat settings. | ||
|
||
require("CopilotChat").setup { | ||
debug = true, -- Enable debugging | ||
-- See Configuration section for rest | ||
window = { | ||
layout = 'vertical', -- 'vertical', 'horizontal', 'float', 'replace' | ||
width = 0.4, -- fractional width of parent, or absolute width in columns when > 1 | ||
height = 0.5, -- fractional height of parent, or absolute height in rows when > 1 | ||
}, | ||
mappings = { | ||
-- Fix a conflict between CopilotChat and how it takes control of the <TAB> | ||
-- key from coc.nvim & cmp-nvim. | ||
complete = { | ||
detail = 'Use @<Tab> or /<Tab> for options.', | ||
insert = '<C-Tab>', | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters