Disable Avante, add java language server.

This commit is contained in:
whitney 2024-11-19 16:14:30 -08:00
parent 640de62432
commit f8ffceb119
4 changed files with 10 additions and 1 deletions

View File

@ -54,6 +54,7 @@ Alternatively you can copy to the `+` or `*` register (`"`` + `+` + `y` ) and p
### Avante
Reference: https://github.com/yetone/avante.nvim/blob/main/lua/avante/config.lua
Remember that the sidebar is toggleable using `LEADER + a + a`.
## Shortcut Reference
`<LEADER>` key is space key. I don't see a need to change it for me.

View File

@ -0,0 +1,3 @@
# Disabled plugins folder.
Plugins are loaded by lazy.lua, by scanning the lua/plugins folder.
Move unused items to this folder.

View File

@ -2,6 +2,7 @@
return {
{
"yetone/avante.nvim",
enabled = false,
event = "VeryLazy",
lazy = false,
version = false, -- set this if you want to always pull the latest change

View File

@ -21,4 +21,8 @@ return {
},
},
},
{
"nvim-java/nvim-java",
opts = {},
},
}