updated bufferline

This commit is contained in:
Tawfeeq 2025-04-06 14:09:10 +02:00
parent 9f9d663f0b
commit ffdb9eb0e5
5 changed files with 129 additions and 72 deletions

View file

@ -1,10 +1,14 @@
return {
'goolord/alpha-nvim',
priority = 1000,
dependencies = {
'nvim-tree/nvim-web-devicons',
'echasnovski/mini.icons',
'nvim-lua/plenary.nvim',
},
config = function()
require('alpha').setup(require('alpha.themes.theta').config)
local alpha = require 'alpha'
local dashboard = require 'alpha.themes.startify'
@ -25,7 +29,34 @@ return {
[[ ]],
[[ ]],
}
-- dashboard.section.header.val = {
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- [[ .-') _ ('-. (`-. _ .-') ]],
-- [[ ( OO ) )_( OO) _(OO )_ ( '.( OO )_ ]],
-- [[,--./ ,--,'(,------. .-'),-----. ,--(_/ ,. \ ,-.-') ,--. ,--.)]],
-- [[| \ | |\ | .---'( OO' .-. '\ \ /(__/ | |OO)| `.' | ]],
-- [[| \| | )| | / | | | | \ \ / / | | \| | ]],
-- [[| . |/(| '--. \_) | |\| | \ ' /, | |(_/| |'.'| | ]],
-- [[| |\ | | .--' \ | | | | \ /__),| |_.'| | | | ]],
-- [[| | \ | | `---. `' '-' ' \ / (_| | | | | | ]],
-- [[`--' `--' `------' `-----' `-' `--' `--' `--' ]],
-- [[ ]],
-- [[ ]],
-- [[ ]],
-- }
-- dashboard.section.header.val = {
--
-- [[ _ _ _ ]],
-- [[ | \| | ___ ___ __ __ (_) _ __ ]],
-- [[ | .` | / -_) / _ \ \ V / | | | ' \ ]],
-- [[ |_|\_| \___| \___/ _\_/_ _|_|_ |_|_|_| ]],
-- [[ _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| ]],
-- [[ "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' ]],
-- }
alpha.setup(dashboard.opts)
end,
}