37 lines
854 B
Lua
37 lines
854 B
Lua
return {
|
|
'soywod/iris.vim',
|
|
'tpope/vim-commentary',
|
|
'vimpostor/vim-tpipeline',
|
|
'michaeljsmith/vim-indent-object',
|
|
'kshenoy/vim-signature',
|
|
'mg979/vim-visual-multi',
|
|
'NMAC427/guess-indent.nvim', -- Detect tabstop and shiftwidth automatically
|
|
'obsidian-nvim/obsidian.nvim',
|
|
|
|
{ -- Adds git related signs to the gutter, as well as utilities for managing changes
|
|
'lewis6991/gitsigns.nvim',
|
|
opts = {
|
|
signs = {
|
|
add = { text = '+' },
|
|
change = { text = '~' },
|
|
delete = { text = '_' },
|
|
topdelete = { text = '‾' },
|
|
changedelete = { text = '~' },
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
'alex-popov-tech/store.nvim',
|
|
dependencies = { 'OXY2DEV/markview.nvim' },
|
|
opts = {},
|
|
cmd = 'Store',
|
|
},
|
|
|
|
|
|
{
|
|
'edluffy/hologram.nvim',
|
|
auto_display = true, -- WIP automatic markdown image display, may be prone to breaking
|
|
},
|
|
}
|