diff options
author | Squibid <me@zacharyscheiman.com> | 2023-05-23 14:36:19 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-05-23 14:36:19 -0400 |
commit | 98ff0c6a718055cc2fc315187788e622f7b08c29 (patch) | |
tree | 0d3cf4474239608631212e887dd04d5f1cf2804e | |
parent | 9e80da174b144f60116cf563c650aa7c98e31031 (diff) | |
download | nvim-98ff0c6a718055cc2fc315187788e622f7b08c29.tar.gz nvim-98ff0c6a718055cc2fc315187788e622f7b08c29.tar.bz2 nvim-98ff0c6a718055cc2fc315187788e622f7b08c29.zip |
added presenter module and truezen
Diffstat (limited to '')
-rw-r--r-- | after/plugin/neorg.lua | 5 | ||||
-rw-r--r-- | after/plugin/truezen.lua | 14 | ||||
-rw-r--r-- | lua/core/plugins.lua | 1 |
3 files changed, 20 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, + }, + } + } +} diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index f08d4db..648df59 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -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' }, |