mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-14 21:13:49 +00:00
unify layz plugin import, allow return multiple plugins per file
This commit is contained in:
parent
e95ecf56e6
commit
689f994fbd
@ -7,6 +7,7 @@ vim.g.conflict_marker_end = '^>>>>>>> .*$'
|
||||
|
||||
-- Git conflict marker management plugin
|
||||
return {
|
||||
{
|
||||
'rhysd/conflict-marker.vim',
|
||||
config = function()
|
||||
-- Highlight groups
|
||||
@ -41,4 +42,5 @@ return {
|
||||
callback = git_conflict_detection,
|
||||
})
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
return {
|
||||
{
|
||||
-- Git related plugins
|
||||
'tpope/vim-fugitive',
|
||||
dependencies = {
|
||||
@ -21,4 +22,5 @@ return {
|
||||
-- Open history graph
|
||||
vim.keymap.set('n', '<leader>gl', '<cmd>Flogsplit<cr><cmd>wincmd k<cr><cmd>q<cr>', { desc = '[G]it [L]og' })
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -1,4 +1,6 @@
|
||||
-- Plugin to intelligently reopen files at last edit position
|
||||
return {
|
||||
{
|
||||
'farmergreg/vim-lastplace',
|
||||
},
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
return {
|
||||
{
|
||||
-- Set lualine as statusline
|
||||
'nvim-lualine/lualine.nvim',
|
||||
-- See `:help lualine.txt`
|
||||
@ -10,4 +11,5 @@ return {
|
||||
component_separators = { left = '', right = '' },
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
-- Markdown preview plugin
|
||||
return {
|
||||
{
|
||||
'iamcco/markdown-preview.nvim',
|
||||
cmd = { 'MarkdownPreviewToggle', 'MarkdownPreview', 'MarkdownPreviewStop' },
|
||||
build = 'cd app; npm install',
|
||||
@ -7,4 +8,5 @@ return {
|
||||
vim.g.mkdp_filetypes = { 'markdown' }
|
||||
end,
|
||||
ft = { 'markdown' },
|
||||
},
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
-- Smooth scroll plugin and keymaps
|
||||
return {
|
||||
{
|
||||
'karb94/neoscroll.nvim',
|
||||
enabled = not vim.g.neovide,
|
||||
config = function()
|
||||
@ -25,4 +26,5 @@ return {
|
||||
['zb'] = { 'zb', { '40' } },
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ vim.api.nvim_create_autocmd('BufLeave', {
|
||||
})
|
||||
|
||||
return {
|
||||
{
|
||||
'stevearc/oil.nvim',
|
||||
-- Optional dependencies
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
@ -28,4 +29,5 @@ return {
|
||||
end
|
||||
end, { desc = '[F]ile [E]xplorer' })
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
return {
|
||||
{
|
||||
-- Simple task runner plugin
|
||||
'stevearc/overseer.nvim',
|
||||
opts = {},
|
||||
@ -44,4 +45,5 @@ return {
|
||||
-- Run task by listing all in floating
|
||||
vim.keymap.set('n', '<leader>or', '<cmd>OverseerRun<cr>', { desc = '[O]verseer [R]un' })
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user