🎨 style(style): update header line style
Use fancier style for header lines
This commit is contained in:
@@ -181,7 +181,7 @@ Options are configured in the `config/options.lua` file under the `ROOTIEST` hea
|
|||||||
The default values are:
|
The default values are:
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
-- --------------------------------- ROOTIEST -----------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none
|
vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none
|
||||||
vim.g.usewakatime = true --Options: true, false
|
vim.g.usewakatime = true --Options: true, false
|
||||||
vim.g.usehardtime = false --Options: true, false
|
vim.g.usehardtime = false --Options: true, false
|
||||||
|
|||||||
@@ -51,9 +51,10 @@
|
|||||||
-- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
|
-- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
|
||||||
-- The rootiest NeoVim configuration!
|
-- The rootiest NeoVim configuration!
|
||||||
|
|
||||||
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
-- Rootiest Configuration
|
-- Rootiest Configuration
|
||||||
require("config.rootiest").setup()
|
require("config.rootiest").setup()
|
||||||
|
|
||||||
-- ---------------------------------- LAZY -------------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LAZY ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
-- Load Lazy package manager and plugins
|
-- Load Lazy package manager and plugins
|
||||||
require("config.lazy")
|
require("config.lazy")
|
||||||
|
|||||||
+1
-1
@@ -15,7 +15,7 @@ if not vim.uv.fs_stat(lazypath) then
|
|||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
||||||
|
|
||||||
-- --------------------------------- PLUGINS -----------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PLUGINS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
spec = {
|
spec = {
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,19 +1,20 @@
|
|||||||
-- ╭─────────────────────────────────────────────────────────╮
|
-- ╭─────────────────────────────────────────────────────────╮
|
||||||
-- │ Options │
|
-- │ Options │
|
||||||
-- ╰─────────────────────────────────────────────────────────╯
|
-- ╰─────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
-- Leader Key
|
-- Leader Key
|
||||||
vim.g.mapleader = " "
|
vim.g.mapleader = " "
|
||||||
|
|
||||||
-- ----------------------------------- LSP --------------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ LSP ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
-- We don't need perl
|
-- We don't need perl
|
||||||
vim.g.loaded_perl_provider = 0
|
vim.g.loaded_perl_provider = 0
|
||||||
-- Prefer basedpyright
|
-- Prefer basedpyright
|
||||||
vim.g.lazyvim_python_lsp = "basedpyright"
|
vim.g.lazyvim_python_lsp = "basedpyright"
|
||||||
|
|
||||||
-- --------------------------------- GIT-BLAME ----------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Git-Blame ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
vim.g.gitblame_display_virtual_text = 0 -- Disable virtual text
|
vim.g.gitblame_display_virtual_text = 0 -- Disable virtual text
|
||||||
|
|
||||||
-- --------------------------------- ROOTIEST -----------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ROOTIEST ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
-- stylua: ignore start
|
-- stylua: ignore start
|
||||||
vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none
|
vim.g.aitool = "codeium" --Options: codeium, copilot, tabnine, minuet, none
|
||||||
vim.g.usewakatime = true --Options: true, false
|
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
|
vim.g.useimage = true --Options: true, false
|
||||||
-- stylua: ignore end
|
-- stylua: ignore end
|
||||||
|
|
||||||
-- ----------------------------------- USER -------------------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ USER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
vim.o.background = "dark"
|
vim.o.background = "dark"
|
||||||
vim.g.DashboardHeaderColor = "#A6E3A1"
|
vim.g.DashboardHeaderColor = "#A6E3A1"
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ return {
|
|||||||
"zenbones-theme/zenbones.nvim",
|
"zenbones-theme/zenbones.nvim",
|
||||||
dependencies = { "rktjmp/lush.nvim" },
|
dependencies = { "rktjmp/lush.nvim" },
|
||||||
},
|
},
|
||||||
-- ---------------------- Utilities ------------------------
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ UTILITIES ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
{ -- Transparent
|
{ -- Transparent
|
||||||
"xiyaowong/transparent.nvim",
|
"xiyaowong/transparent.nvim",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
|
|||||||
Reference in New Issue
Block a user