25 lines
492 B
Lua
25 lines
492 B
Lua
-- Add additional plugins as well as disable some core plugins
|
|
|
|
--[[ local plugins = {
|
|
add = {
|
|
'ggandor/lightspeed.nvim',
|
|
{
|
|
'romgrk/barbar.nvim',
|
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
|
},
|
|
},
|
|
disable = { -- disabling some plugins may mean you'll have to remap some keybindings
|
|
'auto-session',
|
|
'colorizer',
|
|
'fugitive',
|
|
'gitsigns',
|
|
'kommentary',
|
|
'treesitter'
|
|
'telescope'
|
|
'terminal',
|
|
'nvim-tree'
|
|
},
|
|
}
|
|
|
|
return plugins
|
|
]]
|