Files
neovim-config/lua/config/user.lua
T
rootiest c1dd778e47 Checks for .settings files
- Checks for missing files and creates them
- More efficient handling of those settings
2024-07-18 14:14:08 -04:00

18 lines
1.0 KiB
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"
)
-- ---------------------------------- CUSTOM ------------------------------------
-- Add any custom configuration below