added presenter module and truezen
This commit is contained in:
parent
9e80da174b
commit
98ff0c6a71
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,
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -29,6 +29,7 @@ require 'dep' {
|
|||
{ 'matbme/JABS.nvim' }, -- buffer switcher
|
||||
{ 'ziontee113/icon-picker.nvim' }, -- icons
|
||||
{ 'petertriho/nvim-scrollbar' },
|
||||
{ 'pocco81/true-zen.nvim' },
|
||||
|
||||
-- functional plugins -------------------------------------------------------
|
||||
{ 'lewis6991/gitsigns.nvim' },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue