Update README.md
parent
a4ce5f0a63
commit
8d0166c91e
38
README.md
38
README.md
|
@ -27,6 +27,15 @@ require'startup'.setup({
|
|||
" ░ ▒ ▓ █ ▒ ▓ █ ▓ █ ▓ █ ▓ ▒ █ ▓ ▒ ░ ",
|
||||
"░ ░ ▒ ▓ █ ▒ ▓ █ ▓ █ ▓ █ ▓ ▒ █ ▓ ▒ ░ ░",
|
||||
" ▓ █ ▓ █ ▓ █ ▓ ",
|
||||
},
|
||||
oldfiles_amount = 0
|
||||
},
|
||||
lower = {
|
||||
type = 'text',
|
||||
align = 'center',
|
||||
highlight = '',
|
||||
default_color = '#FF0000',
|
||||
content = {
|
||||
" ▓ ▓ ▓ ▓ ▓ ▓ ",
|
||||
" ▒ ▓ ▒ ▓ ▓ ▓ ▒ ▓ ▒ ",
|
||||
" ░▒▓▒░ ▒ ▒ ▒ ░▒▓▒░ ",
|
||||
|
@ -39,15 +48,7 @@ require'startup'.setup({
|
|||
" ▒ ▒ ",
|
||||
" ▒ ▒ ",
|
||||
" ▒▒▒ ",
|
||||
},
|
||||
oldfiles_amount = 0
|
||||
},
|
||||
praise = {
|
||||
type = 'text',
|
||||
content = {'PRAISE THE CODE'},
|
||||
align = 'center',
|
||||
highlight = '',
|
||||
default_color = '#CCCCCC',
|
||||
}
|
||||
},
|
||||
piano = {
|
||||
type = 'text',
|
||||
|
@ -59,6 +60,13 @@ require'startup'.setup({
|
|||
" ░░░░░░░░░░░░░░░░░░░░░░░░░ ",
|
||||
}
|
||||
},
|
||||
praise = {
|
||||
type = 'text',
|
||||
content = {'PRAISE THE CODE'},
|
||||
align = 'center',
|
||||
highlight = '',
|
||||
default_color = '#CCCCCC',
|
||||
},
|
||||
body = {
|
||||
type = 'mapping',
|
||||
oldfiles_directory = false,
|
||||
|
@ -67,10 +75,10 @@ require'startup'.setup({
|
|||
title = 'Commands',
|
||||
margin = 0,
|
||||
content = {
|
||||
{'Find files', 'Telescope find_files', '<leader>f'}, -- requires telescope
|
||||
{'Open files', 'Telescope find_files', '<leader>f'}, -- requires telescope
|
||||
{'Recent files', 'Telescope oldfiles', '<leader>r'}, -- requires telescope
|
||||
{'Browse files', 'Telescope file_browser', '<leader>b'}, -- requires telescope and file_browser
|
||||
{'Git commits', 'Telescope git_commits', '<leader>l'}, -- requires telescope
|
||||
{'Git log', 'Telescope git_commits', '<leader>l'}, -- requires telescope
|
||||
{'Git status', 'Telescope git_status', '<leader>s'}, -- requires telescope
|
||||
{'New file', "lua require'startup'.new_file()", '<leader>n'},
|
||||
},
|
||||
|
@ -82,7 +90,7 @@ require'startup'.setup({
|
|||
mapping_keys = true,
|
||||
disable_statuslines = true,
|
||||
cursor_column = 0.5,
|
||||
paddings = { 10, 1, 1, 0}
|
||||
paddings = { 14, 0, 1, 0, 0 }
|
||||
},
|
||||
mappings = {
|
||||
execute_command = '<CR>',
|
||||
|
@ -94,6 +102,10 @@ require'startup'.setup({
|
|||
colors = {
|
||||
background = '#00000000'
|
||||
},
|
||||
parts = {'keygen_church', 'praise', 'body', 'piano'}
|
||||
-- change the order for sections here
|
||||
-- for example: put lower after body to 'wrap' the menu in the acii art
|
||||
-- make sure to also check the paddings to make sure they work
|
||||
parts = {'keygen_church', 'lower', 'praise', 'body', 'piano'}
|
||||
})
|
||||
|
||||
```
|
Loading…
Reference in New Issue