From 7a5c7ace3ac169b2898a4c7d8abec42cf9e18003 Mon Sep 17 00:00:00 2001 From: Ellison Date: Tue, 28 Jun 2022 18:22:41 -0300 Subject: New configuration system and more (Ref #96) (#122) * initial work * adding more tests * updates * fixing overrides in groups with links * fix bg switch and some hl groups * adding languages hl groups * adding plugins highlights * stylua * removing base module and fixing lightline * adding terminal_color_* vars * adding new screenshot --- tests/minimal_init.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/minimal_init.lua (limited to 'tests/minimal_init.lua') diff --git a/tests/minimal_init.lua b/tests/minimal_init.lua new file mode 100644 index 0000000..b4c8c23 --- /dev/null +++ b/tests/minimal_init.lua @@ -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") -- cgit v1.2.3