Skip to content

Commit

Permalink
update deps in README
Browse files Browse the repository at this point in the history
  • Loading branch information
goolord committed Jan 30, 2024
1 parent 8e7a416 commit e7b2cc3
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
share or snipe some custom themes @ https://github.com/goolord/alpha-nvim/discussions/16

## Quick Start
#### vim-startify theme
#### `vim-startify` theme
![glamor shot](https://user-images.githubusercontent.com/24906808/133367667-0f73e9e1-ea75-46d1-8e1b-ff0ecfeafeb1.png)
<details>
<summary>EXAMPLES</summary>

With [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
Expand Down Expand Up @@ -34,8 +37,13 @@ require "paq" {
}
require'alpha'.setup(require'alpha.themes.startify'.config)
```
</details>

#### dashboard-nvim theme
![glamor shot](https://user-images.githubusercontent.com/24906808/132604236-4f20adc4-706c-49b4-b473-ebfd6a7f0784.png)
<details>
<summary>EXAMPLES</summary>

With [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
Expand All @@ -62,6 +70,49 @@ require "paq" {
}
require'alpha'.setup(require'alpha.themes.dashboard'.config)
```
</details>

#### Theta theme
<details>
<summary>EXAMPLES</summary>

With [lazy.nvim](https://github.com/folke/lazy.nvim):
```lua
{
'goolord/alpha-nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
'nvim-lua/plenary.nvim'
},
config = function ()
require'alpha'.setup(require'alpha.themes.theta'.config)
end
};
```
With packer:
```lua
use {
'goolord/alpha-nvim',
requires = {
'nvim-tree/nvim-web-devicons',
'nvim-lua/plenary.nvim'
},
config = function ()
require'alpha'.setup(require'alpha.themes.dashboard'.config)
end
}
```
..or using paq:
```lua
require "paq" {
"goolord/alpha-nvim";
"nvim-tree/nvim-web-devicons";
'nvim-lua/plenary.nvim';
}
require'alpha'.setup(require'alpha.themes.dashboard'.config)
```
</details>

if you want sessions, see
- https://github.com/Shatur/neovim-session-manager
- :h :mks
Expand Down

0 comments on commit e7b2cc3

Please sign in to comment.