From 3f404079dc46282f6c7c14eb99311d1e243be670 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 11 Nov 2024 00:55:04 +0100 Subject: [PATCH] refactor: remove ai keymaps and just use defaults --- lua/lazyvim/config/options.lua | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lua/lazyvim/config/options.lua b/lua/lazyvim/config/options.lua index bd506655..25a916b7 100644 --- a/lua/lazyvim/config/options.lua +++ b/lua/lazyvim/config/options.lua @@ -15,16 +15,6 @@ vim.g.lazyvim_picker = "auto" -- use that instead of inline suggestions vim.g.ai_cmp = true --- if `vim.g.ai_cmp` is false, or the completion engine does --- not support the AI source, use inline suggestions --- with the keymaps below -vim.g.ai_suggest_accept = "" -vim.g.ai_suggest_accept_word = false -vim.g.ai_suggest_accept_line = false -vim.g.ai_suggest_next = "" -vim.g.ai_suggest_prev = "" -vim.g.ai_suggest_clear = "" - -- LazyVim root dir detection -- Each entry can be: -- * the name of a detector function like `lsp` or `cwd`