remove old plugins

This commit is contained in:
whitney 2025-09-02 15:20:26 -07:00
parent d1131c2bcf
commit 4006054b4e
3 changed files with 0 additions and 58 deletions

View File

@ -1,19 +0,0 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
lazy = false,
opts = {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = false,
},
},
},
}

View File

@ -1,24 +0,0 @@
-- https://github.com/nvim-java/nvim-java/wiki/Lazyvim
return {
"nvim-java/nvim-java",
config = false,
dependencies = {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jdtls = {
-- Your custom jdtls settings goes here
},
},
setup = {
jdtls = function()
require("java").setup({
-- Your custom nvim-java configuration goes here
})
end,
},
},
},
},
}

View File

@ -1,15 +0,0 @@
return {
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
opts = {
ensure_installed = { "lua", "python", "javascript", "java", "sql"},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = { enable = true },
},
},
}