feat: initial site

This commit is contained in:
Folke Lemaitre 2024-06-18 23:17:53 +02:00
commit df4dc74ead
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040
31 changed files with 10703 additions and 0 deletions

17
lua/build.lua Normal file
View file

@ -0,0 +1,17 @@
local M = {}
local function exec(cmd)
return vim.system(vim.split(cmd, " "), { text = true }):wait()
end
function M.themes()
exec("rm -rf src/themes")
exec("mkdir -p src/themes")
exec("cp -r .nvim/plugins/tokyonight.nvim/extras/prism src/themes/prism")
end
function M.update()
M.themes()
end
return M