commit 82666e16ea26133e5c73791d87c5835f5bf3a153 parent a1fb8169f96d3149d2f5b345aac57055d1749164 Author: Tomas Nemec <owl@gtms.dev> Date: Wed, 19 Feb 2025 22:32:48 +0100 update Diffstat:
M | lua/bootstrap.lua | | | 13 | +++++++------ |
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/lua/bootstrap.lua b/lua/bootstrap.lua @@ -20,10 +20,11 @@ local function bootstrap_paq(packages) paq.install() end +local first_install = clone_paq() +if first_install then + -- Set to exit nvim after installing plugins + vim.cmd("autocmd User PaqDoneInstall quit") --- Set to exit nvim after installing plugins -vim.cmd("autocmd User PaqDoneInstall quit") - -bootstrap_paq { - { 'savq/paq-nvim', opt = true }, -} + local plugins = require "plugins" + plugins.install() +end