mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-03-22 01:39:54 +01:00
19 lines
606 B
Lua
19 lines
606 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]]
|
|
|
|
-- vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
|
-- vim.api.nvim_set_hl(0, "NormalNC", { bg = "none" })
|
|
-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
|
-- vim.api.nvim_set_hl(0, "NvimTreeNormal", { bg = "none" })
|
|
-- vim.api.nvim_set_hl(0, "NvimTreeNormalNC", { bg = "none" })
|