1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
-- Startify
vim.cmd [[
let g:startify_custom_header = startify#pad([
\ '==========================',
\ '====== ================',
\ '======= =================',
\ '======= =================',
\ '======= ==== ==== ===',
\ '======= === == = ==',
\ '======= === = == ==',
\ '== === === = == =====',
\ '== === === = == = ==',
\ '=== ===== ==== ===',
\ '==========================',
\ ])
let g:startify_lists = [
\ { 'type': 'sessions', 'header': startify#pad(['Sessions']) },
\ { 'type': 'files', 'header': startify#pad(['Recent']) },
\ { 'type': 'bookmarks', 'header': startify#pad(['Bookmarks']) },
\ { 'type': 'commands', 'header': startify#pad(['Commands']) },
\ ]
]]
vim.g.startify_bookmarks = {
{ env = '~/.config/env' },
{ v = '~/.config/nvim/init.vim' },
{ zc = '~/.config/zsh/.zshrc' },
{ za = '~/.config/zsh/alias.zsh' },
{ gj = '~/dev/go/gojosh' },
}
|