From 6639a08fcd747f5d98f2ac07cae38be91e895263 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sat, 31 Aug 2024 03:02:50 -0400 Subject: [PATCH] style: update section dividers for improved readability --- init.lua | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/init.lua b/init.lua index 308996f..71734d4 100644 --- a/init.lua +++ b/init.lua @@ -51,29 +51,32 @@ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- The rootiest NeoVim configuration! --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ OPTIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ OPTIONS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Neovim options are configured in the lua/config/options.lua file --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Rootiest Configuration require("config.rootiest").setup() -- Set up Rootiest options --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LAZY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LAZY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Load Lazy package manager and plugins ----@diagnostic disable-next-line: different-requires -- This is intentional require("config.lazy") -- Bootstrap lazy.nvim and initialize plugins --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROCKS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROCKS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Load LuaRocks package manager and plugins require("config.rocks") -- Bootstrap LuaRocks and initialize plugins --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PROFILING ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PROFILING ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Load profiling package require("config.profile") -- Set profiling options with environment variables: -- ╭─────────────────────────────────────────────────────────────────────╮ -- │ NVIM_PROFILE=1 Start profiling at startup │ -- │ NVIM_PROFILE_MODULE="lualine" Set profiling target module │ +-- │ NVIM_PROFILE_MODULE="*" Set profiling to all modules │ +-- │ │ +-- │ ex: NVIM_PROFILE=1 NVIM_PROFILE_MODULE="lualine" nvim │ +-- │ :lua require("profile").start("lualine") │ -- ╰─────────────────────────────────────────────────────────────────────╯ --- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ KEYMAPS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +---━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ KEYMAPS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Custom keymaps are configured in the lua/config/keymaps.lua file