mirror of
https://github.com/hazemKrimi/config.nvim.git
synced 2026-05-01 18:20:26 +00:00
25 lines
664 B
Lua
25 lines
664 B
Lua
-- Standalone plugins with less than 10 lines of config go here
|
|
return {
|
|
{
|
|
-- Detect tabstop and shiftwidth automatically
|
|
'tpope/vim-sleuth',
|
|
},
|
|
{
|
|
-- Hints keybinds
|
|
'folke/which-key.nvim',
|
|
},
|
|
{
|
|
'pmizio/typescript-tools.nvim',
|
|
dependencies = { 'nvim-lua/plenary.nvim', 'neovim/nvim-lspconfig' },
|
|
opts = {},
|
|
},
|
|
{
|
|
-- Highlight todo, notes, etc in comments
|
|
'folke/todo-comments.nvim',
|
|
event = 'VimEnter',
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
opts = { signs = false },
|
|
},
|
|
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
|
}
|