true-zen.nvim VS nvim

Compare true-zen.nvim vs nvim and see what are their differences.

true-zen.nvim

🦝 Clean and elegant distraction-free writing for NeoVim (by pocco81)

nvim

My neovim configuration, as it is my weapon of choice. Setting it up for nim-lang was a priority, autocompletion and navigation. (by Rosen-Popov)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
true-zen.nvim nvim
20 6
929 4
- -
0.0 7.9
7 days ago 8 days ago
Lua Lua
GNU General Public License v3.0 only -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

true-zen.nvim

Posts with mentions or reviews of true-zen.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-14.
  • Authors: how do you make your plugin discoverable and appealing?
    9 projects | /r/neovim | 14 Dec 2022
    Duplicated idea, while it is true that your plugin does center buffer without hiding tabline or statusline, I can do the same in true-zen with 2 lines of configuration). In this case what I would want to strike for is making a very simple script.
  • tmux like zooming?
    4 projects | /r/neovim | 16 Nov 2022
    Check TrueZen from Pocco: https://github.com/Pocco81/true-zen.nvim
  • true-zen.nvim (rewrite): clean and elegant distraction-free writing for NeoVim
    2 projects | /r/neovim | 29 Jul 2022
    Heya! Meet true-zen.nvim, a plugin that de-clutters NeoVim's UI to enhance your coding experience.
  • Neovim distributions for writers
    7 projects | /r/neovim | 21 Apr 2022
    Have you considered using neovim with the [TrueZen plugin](https://github.com/Pocco81/TrueZen.nvim)? I threw that into NVChad and it turned into a very nice writing experience for me. YMMV.
  • TrueZen.nvim and gitsigns.nvim not working together?
    2 projects | /r/neovim | 23 Mar 2022
    At first I thougt, that this is due to the colorscheme I use (github-nvim-theme). There is the issue, that when I want to disable Ataraxis-mode, it throws an error and basically the whole Neovim-session is screwed (disabled ui-elements not being reenabled).
  • Write Thin to Write Fast
    6 projects | news.ycombinator.com | 9 Nov 2021
  • ataraxis.lua: distraction-free writing in neovim
    5 projects | /r/neovim | 22 Aug 2021
    TrueZen.nvim - seems to be a bit bloated and overkill for what it aims to be, a bunch of different modes and dozens of configurations options
  • What is the Proper Way to Enter a New Mode in a Hook? Also Lua Question
    2 projects | /r/neovim | 21 Aug 2021
    My second question is a bit more... complicated? I use TrueZen and honestly love it it works perfectly and the developer is awesome and always up for adding some neat things like including the ability to set quit to either quit or toggle, but I ran into one issue I can't seem to resolve with it. This may be a bit complicated so if I describe this incorrectly please let me know. TrueZen has built-in methods for toggle supported statuslines like lualine, but does not always toggle non-supported statuslines. I made a pull request about this, but as I got distracted and busy with uni I accidentally abandoned it (I apologies I know people doing that can be annoying). The pull request however did have some helpful information though, it seems what I need to do is create a custom function that toggles my statusline... but I don't know how. If you review the request here you can see a better more detailed explanation. From what I can tell, as someone who doesn't fully understand vim or lua, I need to create a function call, say togglel_my_statusline, and then call that function in true_zen.after_mode_ataraxis_on = function (). So I did some document reading figured out I could simply do opt.laststatus = 0 and as I simply set opt.statusline this should disable the statusline. I then simply created this
  • (Improvements) TrueZen.nvim: Clean and elegant distraction-free writing for NeoVim
    1 project | /r/neovim | 30 Jun 2021
    Hello! just wanted to take a minute or two from your time to let you know that TrueZen.nvim has changed quite a bit. I first wrote this plugin after being a few weeks into Nvim with lua knowledge that hadn't been used for around 4 months. As you'd expect, code quality was kind of bad.
  • Is There a Newer Goyo?
    4 projects | /r/neovim | 24 Jun 2021

nvim

Posts with mentions or reviews of nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-25.
  • Vim keybinding with non-english keys
    2 projects | /r/neovim | 25 Dec 2022
    Yes there is and just makes it so for insert mode and search and stuff. I made this for myself with the same issue: https://github.com/rdpopov/nvim/blob/master/configs/lang.vim
  • People drop your nvim .dotfile
    80 projects | /r/neovim | 20 Nov 2022
    Aight, here you go. I have some modifications i have made for me, that might be useful. Some of the photos are outdated, statusline very much so, i use something plain and clean of weird characters. But it works for generic text editing as well. https://github.com/rdpopov/nvim. Strongly recommend tmux too
  • Trying to create a LunarVim like IDE setup, called DeathVim
    3 projects | /r/vim | 21 Jun 2022
  • Neovim distributions for writers
    7 projects | /r/neovim | 21 Apr 2022
  • Advice for a fairly newbie in NVim willing to switch from coc to native LSP
    8 projects | /r/neovim | 9 Sep 2021
    You could try this as an alternative to sneak - phaazon/hop.nvim. And im not sure what the grep plugin does but vim has grep integrated. I use it like a ripgrep though. Look into liuchengxu/vista.vim if you haven't, it kinda does like an outline and does not require an lsp( but it can use it) so its more versatile. Look into undotree if that is something that might interest you, it's useful, and maybe set up persistent undo and undodir. Since there is someone else that said about native lsp.. I'll just say its way easier to set up a language server to work correctly. Another cool plugin to use is ray-x/navigator.lua, used it mainly to look at references but it's got more uses. I find airline to slow startup time so if you are experiencing a slowdown thats a possible culprit. Here is my config, steal if you want to. neovim
  • Use Vim As A Nim Ide
    1 project | /r/nim | 8 Jan 2021
    i have somehow made it work a little bit different for the completion and still works great nvimrc

What are some alternatives?

When comparing true-zen.nvim and nvim you can also consider the following projects:

zen-mode.nvim - 🧘 Distraction-free coding for Neovim

vim-lsp-cxx-highlight - Vim plugin for C/C++/ObjC semantic highlighting using cquery, ccls, or clangd

goyo.vim - :tulip: Distraction-free writing in Vim

beande - This repository contains the configuration for Neovim to make it like an IDE.

dashboard-nvim - vim dashboard

telescope.nvim - Find, Filter, Preview, Pick. All lua, all the time.

NeoVim-Delightful - A charming and dazzling NeoVim configuration!

DeathVim - A quick neovim setup.

ataraxis.lua - A simple zen mode for improving code readability on neovim

dotfiles - Dmitry Demenchuk does dotfiles

dotfiles

dotfiles - Me confeegs.. me precious confeegs.