mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
move stuff + gitsigns
This commit is contained in:
parent
3155fb93d6
commit
0f4c50f0e7
2 changed files with 20 additions and 12 deletions
20
lua/plugins/editor.lua
Normal file
20
lua/plugins/editor.lua
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"folke/flash.nvim",
|
||||||
|
opts = {
|
||||||
|
modes = {
|
||||||
|
search = {
|
||||||
|
jump = {
|
||||||
|
nohlsearch = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"lewis6991/gitsigns.nvim",
|
||||||
|
opts = {
|
||||||
|
current_line_blame = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -69,16 +69,4 @@ return {
|
||||||
require("goto-preview").setup(opts)
|
require("goto-preview").setup(opts)
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"folke/flash.nvim",
|
|
||||||
opts = {
|
|
||||||
modes = {
|
|
||||||
search = {
|
|
||||||
jump = {
|
|
||||||
nohlsearch = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue