Files
neovim-config/lua/config/user.lua
T
rootiest 302817f9dd 📦 Better Lazy Config
- Use proper directory structure
- Loading order improved
2024-07-16 17:35:52 -04:00

13 lines
610 B
Lua

-- -----------------------------------------------------------------------------
-- ---------------------------------- 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
vim.cmd.colorscheme(
STORED_THEME or KITTY_THEME or "catppuccin-frappe" or "tokyonight"
)