From 99ef4282176c047a5843b6270ebac0f516046bec Mon Sep 17 00:00:00 2001 From: Michel Date: Tue, 3 Oct 2023 14:53:25 +0200 Subject: [PATCH] refactor: UI modules order --- lua/plugins/UI.lua | 36 +++++++++++++++++++----------------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/lua/plugins/UI.lua b/lua/plugins/UI.lua index 24819f3..4645a2e 100644 --- a/lua/plugins/UI.lua +++ b/lua/plugins/UI.lua @@ -8,23 +8,6 @@ return { }, }, - { - "echasnovski/mini.indentscope", - opts = { - draw = { - animation = require("mini.indentscope").gen_animation.none(), - }, - symbol = "┆", - }, - }, - - { - "SmiteshP/nvim-navic", - opts = function(_, opts) - opts.highlight = false - end, - }, - { "nvim-lualine/lualine.nvim", opts = function(_, opts) @@ -71,4 +54,23 @@ return { } end, }, + + { + "echasnovski/mini.indentscope", + opts = { + draw = { + animation = require("mini.indentscope").gen_animation.none(), + }, + symbol = "┆", + }, + }, + + { + "SmiteshP/nvim-navic", + opts = function(_, opts) + opts.highlight = false + end, + }, } + +-- vim: fdm=indent fdl=2