diff options
Diffstat (limited to 'after/plugin')
-rw-r--r-- | after/plugin/neorg.lua | 5 | ||||
-rw-r--r-- | after/plugin/truezen.lua | 14 |
2 files changed, 19 insertions, 0 deletions
diff --git a/after/plugin/neorg.lua b/after/plugin/neorg.lua index af41a47..58dc358 100644 --- a/after/plugin/neorg.lua +++ b/after/plugin/neorg.lua @@ -40,6 +40,11 @@ neorg.setup { engine = "nvim-cmp", } }, + ["core.presenter"] = { + config = { + zen_mode = "truezen", + } + } } } diff --git a/after/plugin/truezen.lua b/after/plugin/truezen.lua new file mode 100644 index 0000000..fb2702f --- /dev/null +++ b/after/plugin/truezen.lua @@ -0,0 +1,14 @@ +local status_ok, truezen = pcall(require, "true-zen") +if not status_ok then + return +end + +truezen.setup { + modes = { + ataraxis = { + minimum_writing_area = { + width = 85, + }, + } + } +} |