diff options
author | Gustaf Rydholm <gustaf@nexure.io> | 2022-06-02 18:58:25 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf@nexure.io> | 2022-06-02 18:58:25 +0200 |
commit | 66fd789c673cc659ec0c18d25438892d66dba28d (patch) | |
tree | 540943db06ac025dcd8c9d94505ee0f2ee56a423 | |
parent | 91f97ea127e2c33809e1492303a2704c8b75f933 (diff) |
Format lua init
-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", |