Use nvim kickstarter over lazyvim
This commit is contained in:
parent
d367331da0
commit
3f9f750476
54 changed files with 1764 additions and 5 deletions
6
home/dot_config/nvim/lua/custom/plugins/animate.lua
Normal file
6
home/dot_config/nvim/lua/custom/plugins/animate.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
{
|
||||
'echasnovski/mini.animate',
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
26
home/dot_config/nvim/lua/custom/plugins/conflict-markers.lua
Normal file
26
home/dot_config/nvim/lua/custom/plugins/conflict-markers.lua
Normal 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",
|
||||
},
|
||||
},
|
||||
}
|
||||
10
home/dot_config/nvim/lua/custom/plugins/copy-reference.lua
Normal file
10
home/dot_config/nvim/lua/custom/plugins/copy-reference.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
"ranelpadon/python-copy-reference.vim",
|
||||
keys = {
|
||||
{
|
||||
"<leader>rd",
|
||||
"<cmd>PythonCopyReferenceDotted <CR>",
|
||||
desc = "Copy Dotted Reference",
|
||||
},
|
||||
},
|
||||
}
|
||||
13
home/dot_config/nvim/lua/custom/plugins/git-blame.lua
Normal file
13
home/dot_config/nvim/lua/custom/plugins/git-blame.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
"FabijanZulj/blame.nvim",
|
||||
opts = {
|
||||
blame_options = { "-w" },
|
||||
},
|
||||
keys = {
|
||||
{
|
||||
"<leader>gb",
|
||||
"<cmd>BlameToggle<cr>",
|
||||
desc = "Toggle git blame",
|
||||
},
|
||||
},
|
||||
}
|
||||
5
home/dot_config/nvim/lua/custom/plugins/init.lua
Normal file
5
home/dot_config/nvim/lua/custom/plugins/init.lua
Normal 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 {}
|
||||
18
home/dot_config/nvim/lua/custom/plugins/snacks-gitbrowse.lua
Normal file
18
home/dot_config/nvim/lua/custom/plugins/snacks-gitbrowse.lua
Normal 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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
10
home/dot_config/nvim/lua/custom/plugins/zk.lua
Normal file
10
home/dot_config/nvim/lua/custom/plugins/zk.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
{
|
||||
"zk-org/zk-nvim",
|
||||
config = function()
|
||||
require("zk").setup({
|
||||
-- See Setup section below
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue