Install some extra plugins
This commit is contained in:
parent
606b878ee4
commit
c58ac880c1
7 changed files with 70 additions and 19 deletions
13
home/dot_config/nvim/lua/plugins/animate.lua
Normal file
13
home/dot_config/nvim/lua/plugins/animate.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
{
|
||||
"echasnovski/mini.animate",
|
||||
opts = {
|
||||
open = {
|
||||
enable = false,
|
||||
},
|
||||
close = {
|
||||
enable = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
13
home/dot_config/nvim/lua/plugins/git-blame.lua
Normal file
13
home/dot_config/nvim/lua/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",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -8,7 +8,7 @@ return {
|
|||
basedpyright = {
|
||||
settings = {
|
||||
basedpyright = {
|
||||
typeCheckingMode = "standard",
|
||||
typeCheckingMode = "basic",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
18
home/dot_config/nvim/lua/plugins/openingh.lua
Normal file
18
home/dot_config/nvim/lua/plugins/openingh.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
{
|
||||
"https://gitea.gwairfelin.com/max/openingh.nvim",
|
||||
keys = {
|
||||
{
|
||||
"<leader>gB",
|
||||
"<cmd>OpenInGHFile!<cr>",
|
||||
desc = "Open this file in the git remote",
|
||||
},
|
||||
{
|
||||
"<leader>gB",
|
||||
"<cmd>'<,'>OpenInGHFileLines!<cr>",
|
||||
desc = "Open these lines in the git remote",
|
||||
mode = "v",
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
5
home/dot_config/nvim/lua/plugins/plenary.lua
Normal file
5
home/dot_config/nvim/lua/plugins/plenary.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
{
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue