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