im stupid and i should kill myself
This commit is contained in:
parent
9071d7e0b1
commit
919b772ae5
1 changed files with 18 additions and 10 deletions
|
@ -31,16 +31,24 @@ local plugins = {
|
||||||
"windwp/nvim-ts-autotag",
|
"windwp/nvim-ts-autotag",
|
||||||
|
|
||||||
-- org mode
|
-- org mode
|
||||||
{
|
{
|
||||||
'nvim-orgmode/orgmode',
|
'nvim-orgmode/orgmode',
|
||||||
event = 'VeryLazy',
|
event = 'VeryLazy',
|
||||||
config = function()
|
config = function()
|
||||||
-- Setup orgmode
|
-- Setup orgmode
|
||||||
require('orgmode').setup({
|
require('orgmode').setup({
|
||||||
org_agenda_files = '~/org/*',
|
org_agenda_files = '~/orgfiles/**/*',
|
||||||
--org_default_notes_file = '~/org/refile.org',
|
org_default_notes_file = '~/orgfiles/refile.org',
|
||||||
})
|
})
|
||||||
},
|
|
||||||
|
-- NOTE: If you are using nvim-treesitter with `ensure_installed = "all"` option
|
||||||
|
-- add `org` to ignore_install
|
||||||
|
-- require('nvim-treesitter.configs').setup({
|
||||||
|
-- ensure_installed = 'all',
|
||||||
|
-- ignore_install = { 'org' },
|
||||||
|
-- })
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
-- like fzf but goofier
|
-- like fzf but goofier
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue