nvim/lua/cosmic/config/examples/plugins.lua
2021-11-10 14:42:28 -08:00

31 lines
597 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 core plugins may mean you'll have to remap some keybindings
--[[
'auto-session',
'autocomplete',
'colorizer',
'dashboard',
'fugitive',
'gitsigns',
'kommentary',
'nvim-tree',
'statusline',
'telescope',
'terminal',
'theme',
'todo-comments',
'treesitter',
]]
},
}
return plugins