Add auto-save + start screen

This commit is contained in:
Jack Walton Jarosz 2024-10-29 13:24:46 -04:00
parent 1023086716
commit ea6c581064
3 changed files with 46 additions and 25 deletions

View file

@ -0,0 +1,12 @@
return {
'goolord/alpha-nvim',
-- dependencies = { 'echasnovski/mini.icons' },
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
local startify = require 'alpha.themes.startify'
-- available: devicons, mini, default is mini
-- if provider not loaded and enabled is true, it will try to use another provider
startify.file_icons.provider = 'devicons'
require('alpha').setup(startify.config)
end,
}