Refactor Plugins

This commit is contained in:
LeoSM_07 2025-05-06 16:04:58 -04:00
parent b3f3fc70f0
commit 78dc0868c7
No known key found for this signature in database
8 changed files with 57 additions and 150 deletions

View file

@ -0,0 +1,4 @@
return {
'projekt0n/github-nvim-theme',
config = function() end,
}

View file

@ -0,0 +1,10 @@
return {
'NvChad/nvterm',
config = function()
require('nvterm').setup()
vim.keymap.set('n', '<leader>tt', function()
require('nvterm.terminal').toggle 'horizontal'
end, { desc = '[T]oggle [T]erminal' })
end,
}

View file

@ -0,0 +1,5 @@
return {
'windwp/nvim-ts-autotag',
lazy = false,
config = true,
}

View file

@ -2,4 +2,7 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
'vague2k/vague.nvim',
config = function() end,
}