Neovim started showing UI rendering issues after the latest update. Some of the Unicode characters used in the vim-airline plugin were found to be the cause, this commit aims to solve the issue by removing those characters.
Check this issue for more details - https://github.com/vim-airline/vim-airline/issues/2704
Very arcane.
C ANSI standard requires a newline at the end. GCC will complain.
Email signatures should have a space after the -- according to the
standard. Neomutt does this automatically for you if you have a
signature.
Co-authored-by: Spenser Truex <truex@equwal.com>
Sorry for making another merge request here, but I realized that the command would fail if the filepath contained spaces. Adding quotation marks fixes this issue
This will allow using the mappings in the vim command line.
Here the leader is ";"
So here `:e ;cfz` typed fast will expand into
`:e /home/user/.config/zsh/.zshrc`.
This is more helpful with :sp, :vs, :cd or anywhere where a file or
a directory is expected in the vim command line.
This caused no effect for the first call to ToggleHiddenAll().
The second call works as value was set correctly inside
ToggleHiddenAll() on the first call.
Vimwiki is not config but it's data so ".local/share/nvim" is
more proper location for it.
Here relative path was given so it tries to create new vimwiki
folder when launched from other than home dir or changing current
dir using `:cd <path>` inside vim when launching vimwiki.
github automatically redirects to vim-airline, so this is not a
problem when installing, but updating just for the sake of
explicitness and having the correct username/repo
While removing trailing newlines is a good idea, it is a problem when
editing C files which "must" have an empty line at the bottom.
So we leave just a single newline, if there were any.
Co-authored-by: Spenser Truex <truex@equwal.com>