summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua9
1 files changed, 2 insertions, 7 deletions
diff --git a/init.lua b/init.lua
index ad26830..8c2e5fc 100644
--- a/init.lua
+++ b/init.lua
@@ -8,12 +8,7 @@ local function bootstrap(user, repository)
local path = fmt("%s/%s", packer_path, repository)
if fn.empty(fn.glob(path)) > 0 then
execute(
- fmt(
- "!git clone --depth 1 https://github.com/%s/%s %s",
- user,
- repository,
- path
- )
+ fmt("!git clone --depth 1 https://github.com/%s/%s %s", user, repository, path)
)
execute(fmt("packadd %s", repository))
end
@@ -23,7 +18,7 @@ bootstrap("wbthomason", "packer.nvim")
bootstrap("Olical", "aniseed")
bootstrap("lewis6991", "impatient.nvim")
-require("impatient")
+require "impatient"
vim.g["aniseed#env"] = {
module = "init",