add configs and some media

This commit is contained in:
nubo
2024-04-17 19:02:50 -07:00
parent a59757d630
commit 68a55fe348
43 changed files with 5004 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
{ "ellisonleao/gruvbox.nvim", priority = 1000 , config = true, opts = ...,
config = function()
vim.cmd.colorscheme ("gruvbox")
end,
},
})