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