Use nvim kickstarter over lazyvim

This commit is contained in:
Maximilian Friedersdorff 2025-09-30 22:08:24 +01:00
parent d367331da0
commit 3f9f750476
54 changed files with 1764 additions and 5 deletions

View file

@ -0,0 +1,6 @@
return {
{
'echasnovski/mini.animate',
opts = {},
},
}

View file

@ -0,0 +1,26 @@
return {
"akinsho/git-conflict.nvim",
lazy = false,
opts = {
default_mappings = {
ours = "<leader>ho",
theirs = "<leader>ht",
none = "<leader>h0",
both = "<leader>hb",
next = "]x",
prev = "[x",
},
},
keys = {
{
"<leader>gx",
"<cmd>GitConflictListQf<cr>",
desc = "List Conflicts",
},
{
"<leader>gr",
"<cmd>GitConflictRefresh<cr>",
desc = "Refresh Conflicts",
},
},
}

View file

@ -0,0 +1,10 @@
return {
"ranelpadon/python-copy-reference.vim",
keys = {
{
"<leader>rd",
"<cmd>PythonCopyReferenceDotted <CR>",
desc = "Copy Dotted Reference",
},
},
}

View file

@ -0,0 +1,13 @@
return {
"FabijanZulj/blame.nvim",
opts = {
blame_options = { "-w" },
},
keys = {
{
"<leader>gb",
"<cmd>BlameToggle<cr>",
desc = "Toggle git blame",
},
},
}

View file

@ -0,0 +1,5 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}

View file

@ -0,0 +1,18 @@
return {
{
"folke/snacks.nvim",
opts = {
gitbrowse = {
config = function(opts, defaults)
opts.url_patterns["bitbucket%.org"] = {
branch = "/src/{branch}",
file = "/src/{branch}/{file}#lines-{line_start}:{line_end}",
permalink = "/src/{commit}/{file}#lines-{line_start}:{line_end}",
commit = "/commits/{commit}",
}
opts.what = "permalink"
end,
},
},
},
}

View file

@ -0,0 +1,10 @@
return {
{
"zk-org/zk-nvim",
config = function()
require("zk").setup({
-- See Setup section below
})
end,
},
}