diff --git a/lua/keymaps.lua b/lua/keymaps.lua index de9aecd..cc194a6 100644 --- a/lua/keymaps.lua +++ b/lua/keymaps.lua @@ -84,19 +84,6 @@ vim.keymap.set('n', '[', 'tabprevious', { desc = 'Previous vim.keymap.set('n', '\\', 'Neotree toggle', { desc = 'Toggle Neotree' }) vim.keymap.set('n', '0', 'ToggleTerm', { desc = 'Toggle Terminal' }) --- Toggle LLM Suggestions -vim.keymap.set('n', 'tt', function() - local cp = require 'copilot.suggestion' - - cp.toggle_auto_trigger() - - if vim.b.copilot_suggestion_auto_trigger then - vim.notify 'Suggestions Enabled' - else - vim.notify 'Suggestions Disabled' - end -end, { desc = '[T]oggle LLM Suggestion Auto-[T]rigger' }) - -- Define a function to wrap lines to 80 columns vim.keymap.set('n', 'dw', function() -- Save the current 'textwidth' setting