mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 17:44:38 +01:00
16 lines
329 B
Lua
16 lines
329 B
Lua
require("globals")
|
|
require("options")
|
|
require("config.lazy")
|
|
require("mappings")
|
|
vim.cmd("source ~/.config/nvim/suda.vim")
|
|
local time = tonumber( os.date "%H" )
|
|
|
|
vim.filetype.add({
|
|
pattern = {
|
|
[".*/hypr/.*%.conf"] = "hyprlang",
|
|
[".*/uwsm/env.*"] = "zsh",
|
|
}
|
|
})
|
|
|
|
vim.cmd[[colorscheme catppuccin-macchiato]]
|