diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:16:46 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-04-12 21:16:46 +0200 |
| commit | bbd8c1d59ca4249a9477aece9d80cf3405c764a6 (patch) | |
| tree | 05139cb5e6a42d6e700e4dc440c5a57c27f164f9 /lua/install.lua | |
| parent | 82779fc7fbb42f5f97bf5840d3248ad84a63c095 (diff) | |
fix: remove lua files
Diffstat (limited to 'lua/install.lua')
| -rw-r--r-- | lua/install.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lua/install.lua b/lua/install.lua deleted file mode 100644 index 75e0239..0000000 --- a/lua/install.lua +++ /dev/null @@ -1,19 +0,0 @@ --- Installs plugins with packer. -local plugins = require "plugins" - -require "bootstrap" - -local packer = require "config.packer" - --- Install your plugins here -return packer.startup(function(use) - for _, plugin in ipairs(plugins) do - use(plugin) - end - - -- Automatically set up your configuration after cloning packer.nvim - -- Put this at the end after all plugins - if PACKER_BOOTSTRAP then - packer.sync() - end -end) |