mirror of
https://github.com/harivansh-afk/cozybox.nvim.git
synced 2026-04-15 14:03:50 +00:00
Initial cozybox repo
Import the current cozybox theme into the fresh repository and lighten the default blue accent. Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
commit
facd7e7e31
8 changed files with 1804 additions and 0 deletions
11
tests/minimal_init.lua
Normal file
11
tests/minimal_init.lua
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
local plenary_dir = os.getenv("PLENARY_DIR") or "/tmp/plenary.nvim"
|
||||
local is_not_a_directory = vim.fn.isdirectory(plenary_dir) == 0
|
||||
if is_not_a_directory then
|
||||
vim.fn.system({ "git", "clone", "https://github.com/nvim-lua/plenary.nvim", plenary_dir })
|
||||
end
|
||||
|
||||
vim.opt.rtp:append(".")
|
||||
vim.opt.rtp:append(plenary_dir)
|
||||
|
||||
vim.cmd("runtime plugin/plenary.vim")
|
||||
require("plenary.busted")
|
||||
Loading…
Add table
Add a link
Reference in a new issue