diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua
index 2562ac33..8257880b 100644
--- a/.config/nvim/init.lua
+++ b/.config/nvim/init.lua
@@ -19,8 +19,6 @@ require("lazy").setup({
         { import = "lazyvim.plugins.extras.coding.copilot-chat" },
         { import = "lazyvim.plugins.extras.coding.mini-surround" },
         { import = "lazyvim.plugins.extras.dap.core" },
-        { import = "lazyvim.plugins.extras.editor.aerial" },
-        { import = "lazyvim.plugins.extras.editor.illuminate" },
         { import = "lazyvim.plugins.extras.editor.leap" },
         { import = "lazyvim.plugins.extras.test.core" },
         { import = "lazyvim.plugins.extras.ui.mini-indentscope" },
diff --git a/.config/nvim/lua/plugins/ui.lua b/.config/nvim/lua/plugins/ui.lua
index d653a072..33b023be 100644
--- a/.config/nvim/lua/plugins/ui.lua
+++ b/.config/nvim/lua/plugins/ui.lua
@@ -25,6 +25,42 @@ return {
             },
         },
     },
+    {
+        "echasnovski/mini.indentscope",
+        opts = {
+            draw = {
+                animation = require("mini.indentscope").gen_animation.none(),
+            },
+        },
+    },
+    {
+        "nvim-lualine/lualine.nvim",
+        opts = {
+            sections = {
+                lualine_y = {
+                    {
+                        function()
+                            --stylua: ignore
+                            local chars = { "", "", "", "", "", "", "", "", "", "", "", "", "" }
+                            return chars[math.ceil(vim.fn.line(".") / vim.fn.line("$") * #chars)]
+                        end,
+                        separator = " ",
+                        padding = { left = 1, right = 0 },
+                    },
+                    { "location", padding = { left = 0, right = 1 } },
+                },
+                lualine_z = {
+                    {
+                        "o:encoding",
+                        fmt = string.upper,
+                        separator = " ",
+                        padding = { left = 1, right = 0 },
+                    },
+                    { "fileformat", padding = { left = 0, right = 1 } },
+                },
+            },
+        },
+    },
     {
         "nvimdev/dashboard-nvim",
         opts = function(_, opts)
@@ -156,40 +192,4 @@ return {
             end
         end,
     },
-    {
-        "echasnovski/mini.indentscope",
-        opts = {
-            draw = {
-                animation = require("mini.indentscope").gen_animation.none(),
-            },
-        },
-    },
-    {
-        "nvim-lualine/lualine.nvim",
-        opts = {
-            sections = {
-                lualine_y = {
-                    {
-                        function()
-                            --stylua: ignore
-                            local chars = { "", "", "", "", "", "", "", "", "", "", "", "", "" }
-                            return chars[math.ceil(vim.fn.line(".") / vim.fn.line("$") * #chars)]
-                        end,
-                        separator = " ",
-                        padding = { left = 1, right = 0 },
-                    },
-                    { "location", padding = { left = 0, right = 1 } },
-                },
-                lualine_z = {
-                    {
-                        "o:encoding",
-                        fmt = string.upper,
-                        separator = " ",
-                        padding = { left = 1, right = 0 },
-                    },
-                    { "fileformat", padding = { left = 0, right = 1 } },
-                },
-            },
-        },
-    },
 }