Install blame.nvim
This commit is contained in:
parent
3f699fde8f
commit
db45c38495
|
@ -1,35 +1,35 @@
|
|||
-- Copilot
|
||||
return {
|
||||
"zbirenbaum/copilot.lua",
|
||||
cmd = "Copilot",
|
||||
event = "InsertEnter",
|
||||
opts = {
|
||||
suggestion = {
|
||||
auto_trigger = true,
|
||||
auto_refresh = true,
|
||||
keymap = {
|
||||
accept = "<leader><Tab>",
|
||||
},
|
||||
},
|
||||
filetypes = {
|
||||
markdown = true,
|
||||
tex = true,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
-- Supermaven
|
||||
-- return {
|
||||
-- "supermaven-inc/supermaven-nvim",
|
||||
-- "zbirenbaum/copilot.lua",
|
||||
-- cmd = "Copilot",
|
||||
-- event = "InsertEnter",
|
||||
-- opts = {
|
||||
-- keymaps = {
|
||||
-- accept_suggestion = "<leader><tab>",
|
||||
-- accept_word = "<C-j>",
|
||||
-- suggestion = {
|
||||
-- auto_trigger = true,
|
||||
-- auto_refresh = true,
|
||||
-- keymap = {
|
||||
-- accept = "<leader><Tab>",
|
||||
-- },
|
||||
-- },
|
||||
-- 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 = "<leader><tab>",
|
||||
accept_word = "<C-j>",
|
||||
},
|
||||
disable_keymaps = false, -- disables built in keymaps for more manual control
|
||||
}
|
||||
}
|
||||
|
||||
-- Neocodium
|
||||
-- return {
|
||||
-- "monkoose/neocodeium",
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
{
|
||||
"FabijanZulj/blame.nvim",
|
||||
lazy = false,
|
||||
config = function()
|
||||
require('blame').setup {}
|
||||
end,
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue