added presenter module and truezen
This commit is contained in:
@ -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,
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user