Some minor extra nvim config

This commit is contained in:
Emmet 2024-09-28 10:43:27 -05:00
parent e0d826c606
commit 3a4974b2c3
3 changed files with 14 additions and 1 deletions

View file

@ -26,6 +26,7 @@ return {
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make', lazy = false, },
{ 'nvim-telescope/telescope-project.nvim', lazy = false, },
{ 'natecraddock/workspaces.nvim', lazy = false, },
{ 'jghauser/follow-md-links.nvim', lazy = false, },
{
"NeogitOrg/neogit",
@ -39,4 +40,13 @@ return {
},
config = true
},
{
'nvim-orgmode/orgmode',
event = 'VeryLazy',
ft = { 'org' },
config = function()
-- Setup orgmode
require('orgmode').setup({})
end,
},
}