From b12894691da3e77a6c87ebb1f7b4942fd77cdc6a Mon Sep 17 00:00:00 2001 From: leafee98 Date: Wed, 12 Jul 2023 11:42:17 +0800 Subject: [PATCH] reorder editor plugins in config file --- lua/plugins/10-editor.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lua/plugins/10-editor.lua b/lua/plugins/10-editor.lua index 1188f74..1681275 100644 --- a/lua/plugins/10-editor.lua +++ b/lua/plugins/10-editor.lua @@ -7,6 +7,14 @@ return { vim.cmd("colorscheme gruvbox-material") end }, + { + "lukas-reineke/indent-blankline.nvim", + main = "indent_blankline", + opts = { + show_current_context = true, + show_current_context_start = true, + }, + }, { "famiu/bufdelete.nvim", lazy = false, @@ -20,14 +28,6 @@ return { main = "neoscroll", opts = { }, }, - { - "lukas-reineke/indent-blankline.nvim", - main = "indent_blankline", - opts = { - show_current_context = true, - show_current_context_start = true, - }, - }, { "akinsho/bufferline.nvim", enabled = full_feature,