summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-09 19:38:15 -0400
committerchristianchiarulli <[email protected]>2021-07-09 19:38:15 -0400
commit607d473afea3063339cdb066d5e9c6cd0b8f1223 (patch)
treeffb6ac0babe7ee0bff47f1b0d51c68fc61d5f0c6 /lua/plugins.lua
parentbc81c31fb7c0e8dca3098a8f5cf75d187fd06b9f (diff)
remove extra plugins (debloating)
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua36
1 files changed, 2 insertions, 34 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index a9c625ce..c99a212f 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -114,9 +114,6 @@ return require("packer").startup(function(use)
end,
}
- -- Color
- use { "christianchiarulli/nvcode-color-schemes.vim", opt = true }
-
-- Icons
use { "kyazdani42/nvim-web-devicons" }
@@ -150,6 +147,7 @@ return require("packer").startup(function(use)
disable = not O.plugin.dashboard.active,
-- opt = true,
}
+
-- Zen Mode
use {
"folke/zen-mode.nvim",
@@ -161,16 +159,6 @@ return require("packer").startup(function(use)
disable = not O.plugin.zen.active,
}
- use {
- "norcalli/nvim-colorizer.lua",
- event = "BufWinEnter",
- config = function()
- require "lv-colorizer"
- -- vim.cmd "ColorizerReloadAllBuffers"
- end,
- disable = not O.plugin.colorizer.active,
- }
-
-- Treesitter playground
use {
"nvim-treesitter/playground",
@@ -205,19 +193,6 @@ return require("packer").startup(function(use)
disable = not O.plugin.ts_context_commentstring.active,
}
- -- Symbol Outline
- use {
- "simrat39/symbols-outline.nvim",
- cmd = "SymbolsOutline",
- disable = not O.plugin.symbol_outline.active,
- }
- -- diagnostics
- use {
- "folke/trouble.nvim",
- cmd = "TroubleToggle",
- disable = not O.plugin.trouble.active,
- }
-
-- Debugging
use {
"mfussenegger/nvim-dap",
@@ -247,20 +222,13 @@ return require("packer").startup(function(use)
-- Use project for telescope
use {
"nvim-telescope/telescope-project.nvim",
- event = "BufRead",
+ event = "BufWinEnter",
setup = function()
vim.cmd [[packadd telescope.nvim]]
end,
disable = not O.plugin.telescope_project.active,
}
- -- Sane gx for netrw_gx bug
- use {
- "felipec/vim-sanegx",
- event = "BufRead",
- disable = not O.plugin.sanegx.active,
- }
-
-- Diffview
use {
"sindrets/diffview.nvim",