added presenter module and truezen
This commit is contained in:
parent
d848039c88
commit
7ebc19e4f9
3 changed files with 20 additions and 0 deletions
|
|
@ -40,6 +40,11 @@ neorg.setup {
|
|||
engine = "nvim-cmp",
|
||||
}
|
||||
},
|
||||
["core.presenter"] = {
|
||||
config = {
|
||||
zen_mode = "truezen",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
14
after/plugin/truezen.lua
Normal file
14
after/plugin/truezen.lua
Normal 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,
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue