We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c09bed commit 8921b60Copy full SHA for 8921b60
lua/custom/plugins/multicursor.lua
lua/custom/plugins/snacks.lua
@@ -0,0 +1,23 @@
1
+return {
2
+ 'folke/snacks.nvim',
3
+ priority = 1000,
4
+ lazy = false,
5
+ ---@type snacks.Config
6
+ opts = {
7
+ -- your configuration comes here
8
+ -- or leave it empty to use the default settings
9
+ -- refer to the configuration section below
10
+ bigfile = { enabled = true },
11
+ dashboard = { enabled = true },
12
+ explorer = { enabled = true },
13
+ indent = { enabled = true },
14
+ input = { enabled = true },
15
+ picker = { enabled = true },
16
+ notifier = { enabled = true },
17
+ quickfile = { enabled = true },
18
+ scope = { enabled = true },
19
+ scroll = { enabled = false },
20
+ statuscolumn = { enabled = false },
21
+ words = { enabled = true },
22
+ },
23
+}
0 commit comments