diff options
| author | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-07 10:59:10 +0100 |
|---|---|---|
| committer | Folke Lemaitre <folke.lemaitre@gmail.com> | 2023-01-07 10:59:10 +0100 |
| commit | cc4602ef023b11e830c3fa70caadc4774c6f4340 (patch) | |
| tree | a143167c6842003f5f88957eb113fcf0b4d71f44 /lua/plugins/example.lua | |
| parent | f28f0fcaaca29f1e695a2b0e70320d809c9debbb (diff) | |
docs: more examples
Diffstat (limited to 'lua/plugins/example.lua')
| -rw-r--r-- | lua/plugins/example.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua new file mode 100644 index 0000000..928c8b9 --- /dev/null +++ b/lua/plugins/example.lua @@ -0,0 +1,33 @@ +-- every spec file under config.plugins will be loaded automatically by lazy.nvim +-- +-- In your plugin files, you can: +-- * add extra plugins +-- * disable/enabled LazyVim plugins +-- * override the configuration of LazyVim plugins +return { + -- change trouble config + { + "folke/trouble.nvim", + -- config = { use_diagnostic_signs = true }, + }, + + -- add symbols-outline + { + "simrat39/symbols-outline.nvim", + cmd = "SymbolsOutline", + keys = { { "<leader>cs", "<cmd>SymbolsOutline<cr>", desc = "Symbols Outline" } }, + config = true, + }, + + -- add zen-mode + { + "folke/zen-mode.nvim", + cmd = "ZenMode", + config = true, + keys = { { "<leader>z", "<cmd>ZenMode<cr>", desc = "Zen Mode" } }, + }, + + -- use mini.starter instead of alpha + -- { "goolord/alpha-nvim", enabled = false }, + -- { "echasnovski/mini.starter", enabled = true }, +} |
