LazyVim/lua/plugins/editor.lua

34 lines
909 B
Lua
Raw Normal View History

2023-01-07 10:59:10 +01:00
-- 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
2023-01-07 11:31:55 +01:00
-- {
-- "folke/trouble.nvim",
-- config = { use_diagnostic_signs = true },
-- },
2023-01-07 10:59:10 +01:00
-- add symbols-outline
2023-01-07 11:31:55 +01:00
-- {
-- "simrat39/symbols-outline.nvim",
-- cmd = "SymbolsOutline",
-- keys = { { "<leader>cs", "<cmd>SymbolsOutline<cr>", desc = "Symbols Outline" } },
-- config = true,
-- },
2023-01-07 10:59:10 +01:00
-- add zen-mode
2023-01-07 11:31:55 +01:00
-- {
-- "folke/zen-mode.nvim",
-- cmd = "ZenMode",
-- config = true,
-- keys = { { "<leader>z", "<cmd>ZenMode<cr>", desc = "Zen Mode" } },
-- },
2023-01-07 10:59:10 +01:00
-- use mini.starter instead of alpha
-- { "goolord/alpha-nvim", enabled = false },
-- { "echasnovski/mini.starter", enabled = true },
}