diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 00:03:39 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-11 00:03:39 +0200 |
commit | 4ec6fb5118f95f00dbacdcf0470e0f9fffd86abc (patch) | |
tree | 45119ff0cd5385ec0586ac35466ee341200b5417 | |
parent | 912073a2c24f8342b34ccc29ea3480d887b99be5 (diff) |
fix(bootstrap): remove global valuelua-config
-rw-r--r-- | lua/bootstrap.lua | 1 | ||||
-rw-r--r-- | lua/install.lua | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lua/bootstrap.lua b/lua/bootstrap.lua index ea8f95b..7341865 100644 --- a/lua/bootstrap.lua +++ b/lua/bootstrap.lua @@ -25,4 +25,3 @@ ensure("lewis6991", "impatient.nvim") -- Enable faster loading with impatient require "config.impatient" -return PACKER_BOOTSTRAP diff --git a/lua/install.lua b/lua/install.lua index cf0a9c3..75e0239 100644 --- a/lua/install.lua +++ b/lua/install.lua @@ -1,7 +1,7 @@ -- Installs plugins with packer. local plugins = require "plugins" -PACKER_BOOTSTRAP = require "bootstrap" +require "bootstrap" local packer = require "config.packer" |