Add moar plugins
This commit is contained in:
parent
30b6d487e1
commit
064e8ad1b4
6 changed files with 56 additions and 17 deletions
13
lua/custom/plugins/barbar.lua
Normal file
13
lua/custom/plugins/barbar.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
-- https://github.com/romgrk/barbar.nvim
|
||||
return {
|
||||
'romgrk/barbar.nvim',
|
||||
enabled = false,
|
||||
dependencies = {
|
||||
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
|
||||
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
|
||||
},
|
||||
init = function()
|
||||
vim.g.barbar_auto_setup = false
|
||||
end,
|
||||
opts = {},
|
||||
}
|
||||
6
lua/custom/plugins/bufferline.lua
Normal file
6
lua/custom/plugins/bufferline.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
-- https://github.com/akinsho/bufferline.nvim
|
||||
return {
|
||||
'akinsho/bufferline.nvim',
|
||||
enabled = true,
|
||||
opts = {},
|
||||
}
|
||||
|
|
@ -1,6 +1,14 @@
|
|||
-- https://github.com/folke/ts-comments.nvim
|
||||
return {
|
||||
'folke/ts-comments.nvim',
|
||||
opts = {},
|
||||
event = 'VeryLazy',
|
||||
-- https://github.com/folke/ts-comments.nvim
|
||||
{
|
||||
'folke/ts-comments.nvim',
|
||||
opts = {},
|
||||
event = 'VeryLazy',
|
||||
},
|
||||
-- https://github.com/JoosepAlviste/nvim-ts-context-commentstring
|
||||
{
|
||||
'JoosepAlviste/nvim-ts-context-commentstring',
|
||||
opts = {},
|
||||
event = 'VeryLazy',
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue