initial commit

This commit is contained in:
m
2025-08-22 18:11:40 -04:00
commit 50e30f9ba4
19 changed files with 1596 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}

View File

@@ -0,0 +1,5 @@
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}

View File

@@ -0,0 +1,24 @@
return {
"nvim-java/nvim-java",
config = false,
dependencies = {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jdtls = {
-- your jdtls configuration goes here
},
},
setup = {
jdtls = function()
require("java").setup({
-- your nvim-java configuration goes here
})
end,
},
},
},
},
}