Gruvbox better suits the system since terminal's color scheme already is Gruvbox.
The changes also enable the truecolor support which is natively supported by st. The colors look better and distinguishable this way.
The last line with autocmd is for transparency. Without it, transparency wouldn't work.
I hugely recommend trying this out. You'll maybe commit the changes later.
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>