nvim/lua/cosmic/config/plugins.lua
2021-10-30 18:54:10 -07:00

31 lines
635 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',
'colorizer',
'fugitive',
'gitsigns',
'kommentary',
'statusline',
'telescope',
'terminal',
'theme', -- if default theme is disabled, you will need to update add your own statusline
'todo-comments',
'treesitter',
'nvim-tree',
},
}
return plugins
]]