Skip to content

Commit

Permalink
chore(neovim): clean up used plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
olimorris committed Jun 7, 2024
1 parent 38f81c9 commit 2ac5185
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 65 deletions.
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/coding.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ return {
},
},
},
log_level = "DEBUG",
log_level = "TRACE",
})
end,
init = function()
Expand Down
52 changes: 0 additions & 52 deletions .config/nvim/lua/plugins/editor.lua
Original file line number Diff line number Diff line change
@@ -1,40 +1,4 @@
return {
{
"sindrets/diffview.nvim",
event = "VeryLazy",
cmd = { "DiffviewOpen", "DiffviewClose", "DiffviewToggleFiles", "DiffviewFocusFiles" },
},
{
--TODO: Add commands and keymaps
"mfussenegger/nvim-jdtls", -- Extensions for nicer Java development in Neovim
ft = "java",
init = function()
require("legendary").commands({
itemgroup = "Java",
icon = "",
description = "Java functionality...",
commands = {
{
"JdtCompile",
description = "Compile the current project",
},
{
"JdtUpdateConfig",
description = "Update the configuration of the current project",
},
},
})
end,
keys = {
{
"<LocalLeader>o",
function()
require("jdtls").organize_imports()
end,
desc = "Java: Organize imports",
},
},
},
{
"kevinhwang91/nvim-ufo", -- Better folds in Neovim
dependencies = "kevinhwang91/promise-async",
Expand Down Expand Up @@ -169,22 +133,6 @@ return {
})
end,
},
-- {
-- "cshuaimin/ssr.nvim", -- Advanced search and replace using Treesitter
-- lazy = true,
-- keys = {
-- {
-- "<LocalLeader>sr",
-- function() require("ssr").open() end,
-- desc = "Structured search and replace",
-- },
-- },
-- opts = {
-- keymaps = {
-- replace_all = "<C-CR>",
-- },
-- },
-- },
{
"folke/todo-comments.nvim", -- Highlight and search for todo comments within the codebase
event = "BufEnter",
Expand Down
5 changes: 0 additions & 5 deletions .config/nvim/lua/plugins/telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ return {
})
end,
},
-- {
-- "nvim-telescope/telescope-fzf-native.nvim", -- Use fzf within Telescope
-- config = function() require("telescope").load_extension("fzf") end,
-- build = "make",
-- },
{
"nvim-telescope/telescope-frecency.nvim", -- Get frequently opened files
config = function()
Expand Down
7 changes: 0 additions & 7 deletions .config/nvim/lua/plugins/ui.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
return {
"nvim-tree/nvim-web-devicons",
{
"jinh0/eyeliner.nvim",
opts = {
dim = true,
highlight_on_key = true,
},
},
{
"folke/edgy.nvim", -- Create predefined window layouts
event = "VeryLazy",
Expand Down

0 comments on commit 2ac5185

Please sign in to comment.