🖋️ Prettier Formatting

- Just some small formatting tweaks to non-code
This commit is contained in:
2024-07-17 05:53:57 -04:00
parent 37167e63d0
commit ee720bad12
2 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -49,7 +49,7 @@
-- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Configuration ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Configuration ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
-- The rootiest NeoVim configuration!
-- ---------------------------------- LAZY ------------------------------------- -- ---------------------------------- LAZY -------------------------------------
require("config.lazy") require("config.lazy")
+9 -5
View File
@@ -2,11 +2,15 @@
-- ---------------------------------- USER ------------------------------------- -- ---------------------------------- USER -------------------------------------
-- ----------------------------------------------------------------------------- -- -----------------------------------------------------------------------------
-- ---------------------------------- STYLE ------------------------------------ -- ---------------------------------- STYLE ------------------------------------
----------- Apply the colorscheme ----------- ----------------------------- Apply the colorscheme ----------------------------
-- 1. Restore last colorscheme if it exists -------- 1. Restore last colorscheme if it exists --------
-- 2. Use kitty theme if it exists -------- 2. Use kitty theme if it exists --------
-- 3. Fallback to Catppuccin Frappe -------- 3. Fallback to Catppuccin Frappe --------
-- 4. Fallback to Tokyonight -------- 4. Fallback to Tokyonight --------
--------------------------------------------------------------------------------
vim.cmd.colorscheme( vim.cmd.colorscheme(
STORED_THEME or KITTY_THEME or "catppuccin-frappe" or "tokyonight" STORED_THEME or KITTY_THEME or "catppuccin-frappe" or "tokyonight"
) )
-- ---------------------------------- CUSTOM ------------------------------------
-- Add any custom configuration below