From 582819f2a53a29e6a7d65d8d54f99ee32fa2459d Mon Sep 17 00:00:00 2001 From: rootiest Date: Tue, 6 Aug 2024 08:44:31 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20style(style):=20update=20header?= =?UTF-8?q?=20line=20style?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use fancier style for header lines --- README.md | 2 +- init.lua | 3 ++- lua/config/lazy.lua | 2 +- lua/config/options.lua | 9 +++++---- lua/plugins/themes.lua | 2 +- 5 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3c49810..3050928 100644 --- a/README.md +++ b/README.md @@ -181,7 +181,7 @@ Options are configured in the `config/options.lua` file under the `ROOTIEST` hea The default values are: ```lua --- --------------------------------- ROOTIEST ----------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none vim.g.usewakatime = true --Options: true, false vim.g.usehardtime = false --Options: true, false diff --git a/init.lua b/init.lua index 9a2ab57..a4cc645 100644 --- a/init.lua +++ b/init.lua @@ -51,9 +51,10 @@ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- The rootiest NeoVim configuration! +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Rootiest Configuration require("config.rootiest").setup() --- ---------------------------------- LAZY ------------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LAZY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- Load Lazy package manager and plugins require("config.lazy") diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index cb66d87..c76ced3 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -15,7 +15,7 @@ if not vim.uv.fs_stat(lazypath) then end vim.opt.rtp:prepend(vim.env.LAZY or lazypath) --- --------------------------------- PLUGINS ----------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PLUGINS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ require("lazy").setup({ spec = { { diff --git a/lua/config/options.lua b/lua/config/options.lua index 7bf567c..7598305 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -1,19 +1,20 @@ -- ╭─────────────────────────────────────────────────────────╮ -- │ Options │ -- ╰─────────────────────────────────────────────────────────╯ + -- Leader Key vim.g.mapleader = " " --- ----------------------------------- LSP -------------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LSP ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- We don't need perl vim.g.loaded_perl_provider = 0 -- Prefer basedpyright vim.g.lazyvim_python_lsp = "basedpyright" --- --------------------------------- GIT-BLAME ---------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Git-Blame ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ vim.g.gitblame_display_virtual_text = 0 -- Disable virtual text --- --------------------------------- ROOTIEST ----------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ -- stylua: ignore start vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none vim.g.usewakatime = true --Options: true, false @@ -21,6 +22,6 @@ vim.g.usehardtime = false --Options: true, false vim.g.useimage = true --Options: true, false -- stylua: ignore end --- ----------------------------------- USER ------------------------------------- +-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ USER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ vim.o.background = "dark" vim.g.DashboardHeaderColor = "#A6E3A1" diff --git a/lua/plugins/themes.lua b/lua/plugins/themes.lua index 1e7f4bf..6a10fbf 100644 --- a/lua/plugins/themes.lua +++ b/lua/plugins/themes.lua @@ -64,7 +64,7 @@ return { "zenbones-theme/zenbones.nvim", dependencies = { "rktjmp/lush.nvim" }, }, - -- ---------------------- Utilities ------------------------ + -- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ UTILITIES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ { -- Transparent "xiyaowong/transparent.nvim", lazy = true,