initial commit

This commit is contained in:
2026-01-19 20:33:18 -05:00
commit 6c728033f2
43 changed files with 4729 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
-- Tokyonight configuration in Lua
require("tokyonight").setup({
-- use the night style
style = "night",
-- disable italic for functions
styles = {
functions = {}
},
-- Change the "hint" color to the "orange" color, and make the "error" color bright red
on_colors = function(colors)
-- colors.hint = colors.orange
colors.bg = "#0d0d0d" -- dark af bruh
colors.fg = "#e3e1e1"
end
})
vim.cmd([[
colorscheme tokyonight
]])
-- vim.g.tokyonight_style = "day"
-- vim.g.tokyonight_italic_functions = true
-- vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" }
-- vim.g.tokyonight_colors = {
-- bg_dark = "#ff0000",
-- bg = "#0d0d0d",
-- fg = "#e3e1e1",
-- }