[NeoVim] Starting the Fennel journey

This commit is contained in:
2022-08-22 20:37:54 +02:00
parent ae90912567
commit 4ec619d04e
8 changed files with 98 additions and 85 deletions

View File

@@ -0,0 +1,19 @@
local install_path = vim.fn.stdpath('data')..'/site/pack/packer/start/'
local function bootstrap(url)
local name = url:gsub('.*/', '')
local path = install_path .. name
if vim.fn.empty(vim.fn.glob(path)) > 0 then
vim.fn.system({'git', 'clone', '--depth', '1', url, path})
vim.cmd('packadd ' .. name)
end
end
bootstrap('https://github.com/udayvir-singh/tangerine.nvim')
bootstrap('https://github.com/udayvir-singh/hibiscus.nvim')
require('tangerine').setup({
compiler = {
hooks = {'oninit'}
}
})