From ee720bad122b16d36b49fdea08e4fffd8d4f628f Mon Sep 17 00:00:00 2001 From: rootiest Date: Wed, 17 Jul 2024 05:53:57 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=96=8B=EF=B8=8F=20Prettier=20Formatting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Just some small formatting tweaks to non-code --- init.lua | 2 +- lua/config/user.lua | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/init.lua b/init.lua index a35124c..3d743da 100644 --- a/init.lua +++ b/init.lua @@ -49,7 +49,7 @@ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Configuration ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -- ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ - +-- The rootiest NeoVim configuration! -- ---------------------------------- LAZY ------------------------------------- require("config.lazy") diff --git a/lua/config/user.lua b/lua/config/user.lua index 782917a..67de6d4 100644 --- a/lua/config/user.lua +++ b/lua/config/user.lua @@ -2,11 +2,15 @@ -- ---------------------------------- USER ------------------------------------- -- ----------------------------------------------------------------------------- -- ---------------------------------- STYLE ------------------------------------ ------------ Apply the colorscheme ----------- --- 1. Restore last colorscheme if it exists --- 2. Use kitty theme if it exists --- 3. Fallback to Catppuccin Frappe --- 4. Fallback to Tokyonight +----------------------------- Apply the colorscheme ---------------------------- +-------- 1. Restore last colorscheme if it exists -------- +-------- 2. Use kitty theme if it exists -------- +-------- 3. Fallback to Catppuccin Frappe -------- +-------- 4. Fallback to Tokyonight -------- +-------------------------------------------------------------------------------- vim.cmd.colorscheme( STORED_THEME or KITTY_THEME or "catppuccin-frappe" or "tokyonight" ) + +-- ---------------------------------- CUSTOM ------------------------------------ +-- Add any custom configuration below