summaryrefslogtreecommitdiff
path: root/lua/plugins/example.lua
diff options
context:
space:
mode:
authorFolke Lemaitre <folke.lemaitre@gmail.com>2023-01-07 11:32:17 +0100
committerFolke Lemaitre <folke.lemaitre@gmail.com>2023-01-07 11:32:17 +0100
commit08c2089912f232087b7b47a1775aee48647c9d55 (patch)
tree3614e80e5763629b971730d0e952689ce6e9ee76 /lua/plugins/example.lua
parente8d9f84e54387c58e197da445fdbad3d20c57f01 (diff)
refactor: example -> editor
Diffstat (limited to 'lua/plugins/example.lua')
-rw-r--r--lua/plugins/example.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/lua/plugins/example.lua b/lua/plugins/example.lua
deleted file mode 100644
index ac60690..0000000
--- a/lua/plugins/example.lua
+++ /dev/null
@@ -1,33 +0,0 @@
--- 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 },
-}