feat: add startup screen
This commit is contained in:
parent
066c095671
commit
3133c229c8
@ -30,6 +30,7 @@
|
|||||||
"project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" },
|
"project.nvim": { "branch": "main", "commit": "8c6bad7d22eef1b71144b401c9f74ed01526a4fb" },
|
||||||
"rose-pine": { "branch": "main", "commit": "8b1fd252255a7f2c41b4192a787ab62660b29f72" },
|
"rose-pine": { "branch": "main", "commit": "8b1fd252255a7f2c41b4192a787ab62660b29f72" },
|
||||||
"rust-tools.nvim": { "branch": "master", "commit": "676187908a1ce35ffcd727c654ed68d851299d3e" },
|
"rust-tools.nvim": { "branch": "master", "commit": "676187908a1ce35ffcd727c654ed68d851299d3e" },
|
||||||
|
"spaceport.nvim": { "branch": "main", "commit": "f57a6848903adcb6bf2dd9f56bb0b8c33a51d4be" },
|
||||||
"suda.vim": { "branch": "master", "commit": "b97fab52f9cdeabe2bbb5eb98d82356899f30829" },
|
"suda.vim": { "branch": "master", "commit": "b97fab52f9cdeabe2bbb5eb98d82356899f30829" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "5972437de807c3bc101565175da66a1aa4f8707a" },
|
"telescope.nvim": { "branch": "master", "commit": "5972437de807c3bc101565175da66a1aa4f8707a" },
|
||||||
"trouble.nvim": { "branch": "main", "commit": "6efc446226679fda0547c0fd6a7892fd5f5b15d8" },
|
"trouble.nvim": { "branch": "main", "commit": "6efc446226679fda0547c0fd6a7892fd5f5b15d8" },
|
||||||
|
|||||||
@ -125,7 +125,7 @@ return {
|
|||||||
desc = 'Buffer Local Keymaps (which-key)',
|
desc = 'Buffer Local Keymaps (which-key)',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
config = function (_, opts)
|
config = function(_, opts)
|
||||||
local wk = require('which-key')
|
local wk = require('which-key')
|
||||||
wk.setup(opts)
|
wk.setup(opts)
|
||||||
wk.add({
|
wk.add({
|
||||||
@ -143,7 +143,7 @@ return {
|
|||||||
{
|
{
|
||||||
'romgrk/barbar.nvim',
|
'romgrk/barbar.nvim',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
|
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
|
||||||
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
|
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
|
||||||
},
|
},
|
||||||
init = function() vim.g.barbar_auto_setup = false end,
|
init = function() vim.g.barbar_auto_setup = false end,
|
||||||
@ -208,7 +208,7 @@ return {
|
|||||||
{
|
{
|
||||||
'folke/zen-mode.nvim',
|
'folke/zen-mode.nvim',
|
||||||
keys = {
|
keys = {
|
||||||
{ '<leader>zt', function () require 'zen-mode'.toggle() end, desc = 'Toggle zen mode' }
|
{ '<leader>zt', function() require 'zen-mode'.toggle() end, desc = 'Toggle zen mode' }
|
||||||
},
|
},
|
||||||
opts = {
|
opts = {
|
||||||
window = {
|
window = {
|
||||||
@ -222,5 +222,10 @@ return {
|
|||||||
{
|
{
|
||||||
'folke/twilight.nvim',
|
'folke/twilight.nvim',
|
||||||
opts = {}
|
opts = {}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'CWood-sdf/spaceport.nvim',
|
||||||
|
opts = {},
|
||||||
|
lazy = false, -- load spaceport immediately
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user