From 0f4c50f0e7480900b4efd2dbda648473c02706b3 Mon Sep 17 00:00:00 2001 From: Ralph Azucena Date: Tue, 9 Apr 2024 12:41:58 -0700 Subject: [PATCH] move stuff + gitsigns --- lua/plugins/editor.lua | 20 ++++++++++++++++++++ lua/plugins/editor_mine.lua | 12 ------------ 2 files changed, 20 insertions(+), 12 deletions(-) create mode 100644 lua/plugins/editor.lua 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, - }, - }, - }, - }, - } }