blob: 61733fbfbc89937a3190ae67acda0f21917613a9 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
================================================================================
*startup_nvim.functions*
This are functions which you can use to build your own startup.nvim theme.
functions.quote() *functions.quote()*
Returns a random programming quote
Return: ~
table: Lines of text for the quote
functions.packer_plugins() *functions.packer_plugins()*
Returns a string with the number of loaded Packer Plugins
Return: ~
string: String with info about the number of loaded plugins
functions.date_time() *functions.date_time()*
Returns the current date and time
Return: ~
table: Table with a string for the date and one for the time
================================================================================
*startup_nvim.headers*
This are functions which you can use to build your own startup.nvim theme.
headers.default_header() *headers.default_header()*
a neovim banner
headers.hydra() *headers.hydra()*
a hydra
headers.neovim_logo() *headers.neovim_logo()*
a neovim `n`
vim:tw=78:ts=8:ft=help:norl:
|