Neovim configs for 2023. Hopefully they last.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
202 B

  1. local day = 9
  2. local night = 19
  3. local hour = os.date("*t").hour
  4. if day <= hour and hour < night then
  5. vim.cmd([[ colorscheme catppuccin-latte ]])
  6. else
  7. vim.cmd([[ colorscheme catppuccin-mocha ]])
  8. end