custom plugins

This commit is contained in:
Ross Sullivan 2024-05-06 20:01:03 +09:00
parent 8986273fd6
commit 10427e6a6d
No known key found for this signature in database
GPG Key ID: FA970BBB851501B3
2 changed files with 26 additions and 3 deletions

View File

@ -245,8 +245,6 @@ require('lazy').setup({
-- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} },
'github/copilot.vim',
{ 'pocco81/auto-save.nvim' },
-- Here is a more advanced example where we pass configuration
-- options to `gitsigns.nvim`. This is equivalent to the following Lua:
-- require('gitsigns').setup({ ... })

View File

@ -2,4 +2,29 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
{ 'pocco81/auto-save.nvim' },
'github/copilot.vim',
{
'nvim-java/nvim-java',
dependencies = {
'nvim-java/lua-async-await',
'nvim-java/nvim-java-refactor',
'nvim-java/nvim-java-core',
'nvim-java/nvim-java-test',
'nvim-java/nvim-java-dap',
'MunifTanjim/nui.nvim',
'neovim/nvim-lspconfig',
'mfussenegger/nvim-dap',
{
'williamboman/mason.nvim',
opts = {
registries = {
'github:nvim-java/mason-registry',
'github:mason-org/mason-registry',
},
},
},
},
},
}