added presenter module and truezen

This commit is contained in:
2023-05-23 14:36:19 -04:00
parent d848039c88
commit 7ebc19e4f9
3 changed files with 20 additions and 0 deletions

View File

@ -40,6 +40,11 @@ neorg.setup {
engine = "nvim-cmp",
}
},
["core.presenter"] = {
config = {
zen_mode = "truezen",
}
}
}
}

14
after/plugin/truezen.lua Normal file
View File

@ -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,
},
}
}
}