Skip to content

Commit

Permalink
feat: added min config and moved CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed May 6, 2024
1 parent 5175671 commit 5b8cc67
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ Any contribution is welcomed!
6. Push to your fork (`git push origin <branch-name>`).
7. Open a [PR](https://github.com/AlejandroSuero/colorscheme-installer.nvim/pulls).

For more information, check [CONTRIBUTING.md](https://github.com/AlejandroSuero/colorscheme-installer.nvim/blob/main/CONTRIBUTING.md)
For more information, check [CONTRIBUTING.md](https://github.com/AlejandroSuero/colorscheme-installer.nvim/blob/main/contrib/CONTRIBUTING.md)
File renamed without changes.
28 changes: 28 additions & 0 deletions contrib/minimal.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
vim.cmd([[set runtimepath=$VIMRUNTIME]])
vim.cmd([[set packpath=/tmp/nvim/lazy/]])

local lazypath = "/tmp/nvim/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({
{
"AlejandroSuero/colorscheme-installer.nvim",
config = function()
require("colorscheme-installer").setup()
end,
lazy = false,
enabled = true,
},
})

0 comments on commit 5b8cc67

Please sign in to comment.