91 lines
3.7 KiB
Lua
91 lines
3.7 KiB
Lua
require'startup'.setup({
|
|
keygen_church = {
|
|
type = 'text',
|
|
title = 'PRAISE THE CODE',
|
|
oldfiles_directory = false,
|
|
fold_section = false,
|
|
default_color = '#FF0000',
|
|
highlight = '',
|
|
margin = 5,
|
|
align = 'center',
|
|
content = {
|
|
" █ ",
|
|
" ▓ █ ▓ ",
|
|
" ░█░ ",
|
|
" █ ",
|
|
" ▓ █ ▓ ",
|
|
" █ ▓ █ ▓ █ ",
|
|
" ▓ █ ▒ █ ▓ █ ▓ █ ▒ █ ▓ ",
|
|
" ▒ ▓ █ ▒ ▓ █ ▓ █ ▓ █ ▓ ▒ █ ▓ ▒ ",
|
|
" ░ ▒ ▓ █ ▒ ▓ █ ▓ █ ▓ █ ▓ ▒ █ ▓ ▒ ░ ",
|
|
"░ ░ ▒ ▓ █ ▒ ▓ █ ▓ █ ▓ █ ▓ ▒ █ ▓ ▒ ░ ░",
|
|
" ▓ █ ▓ █ ▓ █ ▓ ",
|
|
" ▓ ▓ ▓ ▓ ▓ ▓ ",
|
|
" ▒ ▓ ▒ ▓ ▓ ▓ ▒ ▓ ▒ ",
|
|
" ░▒▓▒░ ▒ ▒ ▒ ░▒▓▒░ ",
|
|
" ▓ ▓ ░░░▒░░░ ▓ ▓ ",
|
|
" ▓ ▒ ▒ ▒ ▓ ",
|
|
" ▒ ░░░░▒▒▒▒▒░░░░ ▒ ",
|
|
" ▒ ▒ ▒ ",
|
|
" ░ ▓▒░░▒░░▒▓ ░ ",
|
|
" ░ ▒ ▒ ░ ",
|
|
" ▒ ▒ ",
|
|
" ▒ ▒ ",
|
|
" ▒▒▒ ",
|
|
},
|
|
oldfiles_amount = 0
|
|
},
|
|
praise = {
|
|
type = 'text',
|
|
content = {'PRAISE THE CODE'},
|
|
align = 'center',
|
|
highlight = '',
|
|
default_color = '#CCCCCC',
|
|
},
|
|
piano = {
|
|
type = 'text',
|
|
align = 'center',
|
|
highlight = '',
|
|
default_color = '#FF0000',
|
|
content = {
|
|
"░▓░▓░░▓░▓░▓░░▓░▓░░▓░▓░▓░░",
|
|
"░░░░░░░░░░░░░░░░░░░░░░░░░",
|
|
}
|
|
},
|
|
body = {
|
|
type = 'mapping',
|
|
oldfiles_directory = false,
|
|
align = 'center',
|
|
fold_section = false,
|
|
title = 'Commands',
|
|
margin = 0,
|
|
content = {
|
|
{'READ AS IS WRITTEN', 'Telescope find_files', '<leader>f'}, -- requires telescope
|
|
{'THE OLD CODE REMAINS', 'Telescope oldfiles', '<leader>r'}, -- requires telescope
|
|
{'WANDER THROUGH THE ARCHIVES', 'Telescope file_browser', '<leader>b'}, -- requires telescope and file_browser
|
|
{'REMEMBER ALL THAT HAS BEEN', 'Telescope git_commits', '<leader>l'}, -- requires telescope
|
|
{'AWAIT ALL THAT WILL', 'Telescope git_status', '<leader>s'}, -- requires telescope
|
|
{'RECORD FOR THOSE TO COME', "lua require'startup'.new_file()", '<leader>n'},
|
|
},
|
|
highlight = '',
|
|
default_color = '#BF0000',
|
|
oldfiles_amount = 0
|
|
},
|
|
options = {
|
|
mapping_keys = true,
|
|
disable_statuslines = true,
|
|
cursor_column = 0.5,
|
|
paddings = { 10, 1, 1, 0}
|
|
},
|
|
mappings = {
|
|
execute_command = '<CR>',
|
|
open_file = 'o',
|
|
open_file_split = '<c-o>',
|
|
open_section = '<TAB>',
|
|
open_help = '?',
|
|
},
|
|
colors = {
|
|
background = '#00000000'
|
|
},
|
|
parts = {'keygen_church', 'praise', 'body', 'piano'}
|
|
}) |