diff --git a/nvim/lua/plugins-conf.lua b/nvim/lua/plugins-conf.lua index 51b3c02..7036002 100644 --- a/nvim/lua/plugins-conf.lua +++ b/nvim/lua/plugins-conf.lua @@ -186,8 +186,21 @@ require'lualine'.setup { -- zen mode config require('true-zen').setup { + modes = { + ataraxis = { + callbacks = { + open_pre = function() + vim.opt.linebreak = true + end, + close_post = function() + vim.opt.linebreak = false + end + } + } + }, integrations = { tmux = true, lualine = true } } +