mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-06-07 00:48:24 +02:00
18 lines
410 B
Lua
18 lines
410 B
Lua
require "globals"
|
|
require "options"
|
|
require "config.lazy"
|
|
require "mappings"
|
|
require "autocmd"
|
|
vim.cmd "source ~/.config/nvim/suda.vim"
|
|
local time = tonumber(os.date "%H")
|
|
|
|
vim.filetype.add {
|
|
pattern = { [".*/hypr/.*%.conf"] = "hyprlang", [".*/uwsm/env.*"] = "zsh" },
|
|
}
|
|
|
|
if time >= 8 and time < 17 then
|
|
vim.cmd [[colorscheme catppuccin-latte]]
|
|
else
|
|
vim.cmd [[colorscheme catppuccin-macchiato]]
|
|
end
|