mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 11:24:14 +00:00
feat: initial site
This commit is contained in:
parent
0671c76f96
commit
df4dc74ead
31 changed files with 10703 additions and 0 deletions
17
lua/build.lua
Normal file
17
lua/build.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue