Files
Nvim/lua/plugins/simple.lua
2025-12-23 22:39:41 -06:00

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
},
}