implemented copilot integration as ghost text and simplified some

keyboard shortcuts
This commit is contained in:
venus
2026-07-24 07:24:45 -05:00
parent d04ef25170
commit 04b57e60e6
16 changed files with 436 additions and 131 deletions

View File

@@ -1,8 +1,10 @@
return {
'NMAC427/guess-indent.nvim',
config = function()
require('guess-indent').setup ({
filetype_exclude = {"lua"},
})
config = function()
require('guess-indent').setup {
auto_cmd = true, -- Set to false to disable automatic execution
filetype_exclude = { 'netrw', 'tutor' }, -- A list of filetypes for which the auto command gets disabled
buftype_exclude = { 'help', 'nofile', 'terminal', 'prompt' }, -- A list of buffer types for which the auto command gets disabled
}
end,
} -- Detect tabstop and shiftwidth automatically