From 3133c229c8724f096c7ea768c3884a0ef808d294 Mon Sep 17 00:00:00 2001 From: Fey Naomi Schrewe Date: Sun, 8 Sep 2024 14:34:18 +0200 Subject: [PATCH] feat: add startup screen --- lazy-lock.json | 1 + lua/plugins.lua | 11 ++++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lazy-lock.json b/lazy-lock.json index dc2d163..30b8f0d 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -30,6 +30,7 @@ "project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" }, "rose-pine": { "branch": "main", "commit": "8b1fd252255a7f2c41b4192a787ab62660b29f72" }, "rust-tools.nvim": { "branch": "master", "commit": "676187908a1ce35ffcd727c654ed68d851299d3e" }, + "spaceport.nvim": { "branch": "main", "commit": "f57a6848903adcb6bf2dd9f56bb0b8c33a51d4be" }, "suda.vim": { "branch": "master", "commit": "b97fab52f9cdeabe2bbb5eb98d82356899f30829" }, "telescope.nvim": { "branch": "master", "commit": "5972437de807c3bc101565175da66a1aa4f8707a" }, "trouble.nvim": { "branch": "main", "commit": "6efc446226679fda0547c0fd6a7892fd5f5b15d8" }, diff --git a/lua/plugins.lua b/lua/plugins.lua index f43e2fe..ef69395 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -125,7 +125,7 @@ return { desc = 'Buffer Local Keymaps (which-key)', }, }, - config = function (_, opts) + config = function(_, opts) local wk = require('which-key') wk.setup(opts) wk.add({ @@ -143,7 +143,7 @@ return { { 'romgrk/barbar.nvim', dependencies = { - 'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status + 'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status 'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons }, init = function() vim.g.barbar_auto_setup = false end, @@ -208,7 +208,7 @@ return { { 'folke/zen-mode.nvim', keys = { - { 'zt', function () require 'zen-mode'.toggle() end, desc = 'Toggle zen mode' } + { 'zt', function() require 'zen-mode'.toggle() end, desc = 'Toggle zen mode' } }, opts = { window = { @@ -222,5 +222,10 @@ return { { 'folke/twilight.nvim', opts = {} + }, + { + 'CWood-sdf/spaceport.nvim', + opts = {}, + lazy = false, -- load spaceport immediately } }