Skip to content

Commit

Permalink
Merge pull request #401 from ayamir/cleanup
Browse files Browse the repository at this point in the history
perf: Cleanup legacy code
  • Loading branch information
ayamir authored Jan 4, 2023
2 parents 71e34f6 + 9e31be2 commit 642b1db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion lua/modules/editor/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ editor["edluffy/specs.nvim"] = {
editor["abecodes/tabout.nvim"] = {
opt = true,
event = "InsertEnter",
wants = "nvim-treesitter",
after = "nvim-cmp",
config = conf.tabout,
}
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/lang/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ lang["simrat39/rust-tools.nvim"] = {
opt = true,
ft = "rust",
config = conf.rust_tools,
requires = { { "nvim-lua/plenary.nvim", opt = false } },
requires = "nvim-lua/plenary.nvim",
}
-- lang["kristijanhusak/orgmode.nvim"] = {
-- opt = true,
Expand Down
4 changes: 2 additions & 2 deletions lua/modules/tools/plugins.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
local tools = {}
local conf = require("modules.tools.config")

tools["nvim-lua/plenary.nvim"] = { opt = false }
tools["nvim-lua/plenary.nvim"] = { opt = true, module = "plenary" }
tools["nvim-telescope/telescope.nvim"] = {
opt = true,
module = "telescope",
cmd = "Telescope",
config = conf.telescope,
requires = {
{ "nvim-lua/plenary.nvim", opt = false },
"nvim-lua/plenary.nvim",
{ "nvim-lua/popup.nvim", opt = true },
{ "debugloop/telescope-undo.nvim", opt = true },
},
Expand Down
2 changes: 1 addition & 1 deletion lua/modules/ui/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ui["catppuccin/nvim"] = {
ui["zbirenbaum/neodim"] = {
opt = true,
event = "LspAttach",
requires = "nvim-treesitter",
requires = "nvim-treesitter/nvim-treesitter",
config = conf.neodim,
}
ui["rcarriga/nvim-notify"] = {
Expand Down

0 comments on commit 642b1db

Please sign in to comment.