diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:15:44 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:15:44 +0200 |
| commit | 82779fc7fbb42f5f97bf5840d3248ad84a63c095 (patch) | |
| tree | 7d8327aa0f7eeea7fed99b69c554eb19c671ef29 /init.lua | |
| parent | 4ec6fb5118f95f00dbacdcf0470e0f9fffd86abc (diff) | |
| parent | c561be2e3e71c226985640320559e3bf5e1c7034 (diff) | |
feat(fennel): migration
Diffstat (limited to 'init.lua')
| -rw-r--r-- | init.lua | 34 |
1 files changed, 30 insertions, 4 deletions
@@ -1,5 +1,31 @@ --- Loads plugins for Neovim. +-- Bootstrap nvim with essential plugins. +local fn = vim.fn +local fmt = string.format +local execute = vim.api.nvim_command +local packer_path = fn.stdpath "data" .. "/site/pack/packer/start" -require "settings" -require "install" -require "config" +local function ensure(user, repository) + local ensure_path = fmt("%s/%s", packer_path, repository) + if fn.empty(fn.glob(ensure_path)) > 0 then + execute( + fmt( + "!git clone --depth 1 https://github.com/%s/%s %s", + user, + repository, + ensure_path + ) + ) + execute(fmt("packadd %s", repository)) + end +end + +-- Bootstrap install essential modules if not present +ensure("wbthomason", "packer.nvim") +ensure("Olical", "aniseed") +ensure("lewis6991", "impatient.nvim") + +-- Loads plugins for Neovim with fennel. +vim.g["aniseed#env"] = { + module = "init", + compile = true, +} |