diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua new file mode 100644 index 0000000..78c57e6 --- /dev/null +++ b/lua/plugins/editor.lua @@ -0,0 +1,20 @@ +return { + { + "folke/flash.nvim", + opts = { + modes = { + search = { + jump = { + nohlsearch = false, + }, + }, + }, + }, + }, + { + "lewis6991/gitsigns.nvim", + opts = { + current_line_blame = true, + }, + } +} diff --git a/lua/plugins/editor_mine.lua b/lua/plugins/editor_mine.lua index 1592e95..e20327d 100644 --- a/lua/plugins/editor_mine.lua +++ b/lua/plugins/editor_mine.lua @@ -69,16 +69,4 @@ return { require("goto-preview").setup(opts) end, }, - { - "folke/flash.nvim", - opts = { - modes = { - search = { - jump = { - nohlsearch = false, - }, - }, - }, - }, - } }