mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-24 14:18:36 +02:00
novas configurações
This commit is contained in:
parent
5f8a9386b7
commit
09d224f929
5 changed files with 28 additions and 17 deletions
|
@ -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,
|
||||
}
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue