mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-06 19:15:13 +02:00
Refactor Plugins
This commit is contained in:
parent
b3f3fc70f0
commit
78dc0868c7
8 changed files with 57 additions and 150 deletions
4
lua/custom/plugins/github-theme.lua
Normal file
4
lua/custom/plugins/github-theme.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'projekt0n/github-nvim-theme',
|
||||
config = function() end,
|
||||
}
|
10
lua/custom/plugins/nvterm.lua
Normal file
10
lua/custom/plugins/nvterm.lua
Normal 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,
|
||||
}
|
5
lua/custom/plugins/ts-autotag.lua
Normal file
5
lua/custom/plugins/ts-autotag.lua
Normal file
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
'windwp/nvim-ts-autotag',
|
||||
lazy = false,
|
||||
config = true,
|
||||
}
|
|
@ -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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue