diff --git a/home/nvim/files/lua/plugins/ai_complete.lua b/home/nvim/files/lua/plugins/ai_complete.lua index ad7fef1..c78a64c 100644 --- a/home/nvim/files/lua/plugins/ai_complete.lua +++ b/home/nvim/files/lua/plugins/ai_complete.lua @@ -1,35 +1,35 @@ -- Copilot -return { - "zbirenbaum/copilot.lua", - cmd = "Copilot", - event = "InsertEnter", - opts = { - suggestion = { - auto_trigger = true, - auto_refresh = true, - keymap = { - accept = "", - }, - }, - filetypes = { - markdown = true, - tex = true, - } - } -} - --- Supermaven -- return { --- "supermaven-inc/supermaven-nvim", +-- "zbirenbaum/copilot.lua", +-- cmd = "Copilot", +-- event = "InsertEnter", -- opts = { --- keymaps = { --- accept_suggestion = "", --- accept_word = "", +-- suggestion = { +-- auto_trigger = true, +-- auto_refresh = true, +-- keymap = { +-- accept = "", +-- }, -- }, --- disable_keymaps = false, -- disables built in keymaps for more manual control +-- filetypes = { +-- markdown = true, +-- tex = true, +-- } -- } -- } +-- Supermaven +return { + "supermaven-inc/supermaven-nvim", + opts = { + keymaps = { + accept_suggestion = "", + accept_word = "", + }, + disable_keymaps = false, -- disables built in keymaps for more manual control + } +} + -- Neocodium -- return { -- "monkoose/neocodeium", diff --git a/home/nvim/files/lua/plugins/blame.lua b/home/nvim/files/lua/plugins/blame.lua new file mode 100644 index 0000000..967007b --- /dev/null +++ b/home/nvim/files/lua/plugins/blame.lua @@ -0,0 +1,9 @@ +return { + { + "FabijanZulj/blame.nvim", + lazy = false, + config = function() + require('blame').setup {} + end, + }, +}