@@ -8,6 +8,7 @@ A collection of small QoL plugins for Neovim.
8
8
| ----------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---: |
9
9
| [ bigfile] ( https://github.com/folke/snacks.nvim/blob/main/docs/bigfile.md ) | Deal with big files | ‼️ |
10
10
| [ bufdelete] ( https://github.com/folke/snacks.nvim/blob/main/docs/bufdelete.md ) | Delete buffers without disrupting window layout | |
11
+ | [ dashboard] ( https://github.com/folke/snacks.nvim/blob/main/docs/dashboard.md ) | Beautiful declarative dashboards | ‼️ |
11
12
| [ debug] ( https://github.com/folke/snacks.nvim/blob/main/docs/debug.md ) | Pretty inspect & backtraces for debugging | |
12
13
| [ git] ( https://github.com/folke/snacks.nvim/blob/main/docs/git.md ) | Useful functions for Git | |
13
14
| [ gitbrowse] ( https://github.com/folke/snacks.nvim/blob/main/docs/gitbrowse.md ) | Open the repo of the active file in the browser (e.g., GitHub) | |
@@ -84,13 +85,15 @@ Please refer to the readme of each plugin for their specific configuration.
84
85
--- @field quickfile ? { enabled : boolean }
85
86
--- @field statuscolumn ? snacks.statuscolumn.Config | { enabled : boolean }
86
87
--- @field styles ? table<string , snacks.win.Config>
88
+ --- @field dashboard ? snacks.dashboard.Config | { enabled : boolean }
87
89
--- @field terminal ? snacks.terminal.Config
88
90
--- @field toggle ? snacks.toggle.Config
89
91
--- @field win ? snacks.win.Config
90
92
--- @field words ? snacks.words.Config
91
93
{
92
94
styles = {},
93
95
bigfile = { enabled = false },
96
+ dashboard = { enabled = false },
94
97
notifier = { enabled = false },
95
98
quickfile = { enabled = false },
96
99
statuscolumn = { enabled = false },
@@ -116,6 +119,7 @@ See the example below for how to configure `snacks.nvim`.
116
119
--- @type snacks.Config
117
120
opts = {
118
121
bigfile = { enabled = true },
122
+ dashboard = { enabled = true },
119
123
notifier = {
120
124
enabled = true ,
121
125
timeout = 3000 ,
0 commit comments