Cleanup before LazyVim initialization

This commit is contained in:
2025-06-22 14:45:34 +05:00
parent ce97f22c0c
commit ab59fffd18
16 changed files with 0 additions and 482 deletions

View File

@ -1,63 +0,0 @@
return {
{
"stevearc/conform.nvim",
event = "BufWritePre",
opts = require "configs.conform",
},
{
"neovim/nvim-lspconfig",
config = function()
require "configs.lspconfig"
end,
},
{
event = "VeryLazy",
"natecraddock/workspaces.nvim",
config = function()
require("workspaces").setup()
end,
},
{
"nvim-tree/nvim-tree.lua",
opts = function()
local conf = require "nvchad.configs.nvimtree"
conf.renderer.group_empty = true
return conf
end,
},
{
"nvim-treesitter/nvim-treesitter",
event = { "BufReadPre", "BufNewFile" },
opts = {
require "configs.treesitter",
},
},
{
require "plugins.java.init",
},
{
"mg979/vim-visual-multi",
branch = "master",
lazy = false,
},
{
"nvim-treesitter/nvim-treesitter-context",
event = { "BufReadPre", "BufNewFile" },
opts = function()
return { mode = "cursor", max_lines = 3 }
end,
},
{
"windwp/nvim-ts-autotag",
event = { "BufReadPre", "BufNewFile" },
opts = {},
},
}

View File

@ -1,45 +0,0 @@
return {
"nvim-java/nvim-java",
dependencies = {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jdtls = {
settings = {
java = {
configuration = {
runtimes = {
{
name = "JavaSE-21",
path = "/usr/bin/java",
},
},
},
},
},
},
},
setup = {
jdtls = function()
require("java").setup {
jdk = {
auto_install = false,
},
root_markers = {
"settings.gradle",
"settings.gradle.kts",
"pom.xml",
"build.gradle",
"mvnw",
"gradlew",
"build.gradle",
"build.gradle.kts",
},
}
end,
},
},
},
},
}