diff options
| author | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-07-21 14:46:45 +0100 |
|---|---|---|
| committer | Vito G. Graffagnino <vito@graffagnino.xyz> | 2022-07-21 14:46:45 +0100 |
| commit | 1afd76ff2fa2d7cfb408a78cd8e47209f0305a24 (patch) | |
| tree | 1318002a422e95e388b6e071af08eb32a2685240 /lua/user/orgmode.lua | |
| parent | 0164e81b70138f925f287fea616695e910cc91d6 (diff) | |
added orgmode pluging and icons file from ChrisChiarulli
Diffstat (limited to 'lua/user/orgmode.lua')
| -rw-r--r-- | lua/user/orgmode.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/user/orgmode.lua b/lua/user/orgmode.lua new file mode 100644 index 0000000..74ecea2 --- /dev/null +++ b/lua/user/orgmode.lua @@ -0,0 +1,13 @@ +local status_ok, orgmode = pcall(require, "orgmode") +if not status_ok then + return +end + +require('orgmode').setup_ts_grammer() + +local config = require("orgmode").setup({ + org_agenda_files = {'~/org/**/*'}, + org_default_notes_files = {'~/org/refile.org'} +}) + + |
