1
0
Files
dotfiles/pkgs/neovim/lua/plugins/additions.lua
Anton af86c0c1e5 patch(nvim): unnest.nvim
Makes using git within a terminal nicer. `vim-fugitive` was my former go
to, but I prefer that, with the `<leader>t` shortcut.
2025-12-30 23:48:22 +01:00

23 lines
361 B
Lua

return {
{
'vyfor/cord.nvim',
event = 'VeryLazy',
build = ':Cord update',
opts = {},
cond = vim.env.CORDLESS ~= 'true',
},
{
'tpope/vim-fugitive',
cmd = { 'Git' },
enabled = false, -- prefer using a terminal buffer with unnest.nvim
},
{
dir = '~/dev/share.nvim/',
opts = {},
enabled = false,
},
{
'brianhuster/unnest.nvim',
},
}