novas configurações

This commit is contained in:
Lucas Garcia Rubio 2025-03-28 20:04:33 -03:00
parent 5f8a9386b7
commit 09d224f929
5 changed files with 28 additions and 17 deletions

View file

@ -1,15 +0,0 @@
return {
'Exafunction/codeium.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
'hrsh7th/nvim-cmp',
},
config = function()
require('codeium').setup {
enable_cmp_source = false, -- disabled because I only want to use virtual text
virtual_text = {
enabled = true,
},
}
end,
}

View file

@ -1,5 +1,6 @@
return {
{
--'lucas-garcia-rubio/neotest-maven',
dir = '~/Repositories/pessoal/plugins/neotest-maven',
name = 'neotest-maven',
ft = 'java',
@ -11,6 +12,14 @@ return {
'nvim-lua/plenary.nvim',
'nvim-treesitter/nvim-treesitter',
},
config = function()
local function neotest_output_and_switch()
require('neotest').output.open { enter = true }
end
-- Set key mapping for the function
vim.keymap.set('n', '<leader>lw', neotest_output_and_switch, { desc = 'Neotest output and enter its window' })
end,
},
{
'nvim-neotest/neotest',