blob: a1f1d01a41b8692ebc66558005e480ed40310395 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# 🔧Startup.nvim
## WIP Don't Use
✨Features
--------
* Fully customizable
* Themes
* Easy Customization with building blocks
📦Installation
------------
Use your favourite package manager and call setup function.
For the default setup telescope.nvim is a dependency.
```lua
-- lua and packer.nvim
use {
"max397574/startup.nvim",
requires = {"nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim"}
config = function()
require"startup".setup()
end
}
```
⚙️Customization
-------------
<!-- NOTE: -->
<!-- ???See wiki -->
Call the setup function with your configurations
It is recommended to use a file in the setup function. This can be done like this:
```lua
-- lua and packer.nvim
use {
"max397574/startup.nvim",
requires = {"nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim"}
config = function()
require"starup".setup(require"configs.startup") -- recommended to use a file for this
end
}
```
Here the file would be located at `/lua/configs/startup.lua`.
The file has to return settings.
For one of the default themes this can be done like this: (startify theme)
```lua
local settings = require"startup.themes.startify"
return settings
```
<!-- NOTE: update this -->
These themes are currently available:
* Default
* Startify
<!-- TODO: evil-startup theme -->
<!-- * Evil-startup -->
|