diff options
| -rw-r--r-- | init.lua | 9 | 
1 files changed, 2 insertions, 7 deletions
@@ -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",  |