doc/neovim: fix VimScript comments in examples

VimScript comments start with a double quote (") instead of a hash sign (#).
This commit is contained in:
Austin Horstman
2026-06-26 20:24:28 -05:00
parent 46689fa74a
commit 9742b211f4
+2 -2
View File
@@ -25,7 +25,7 @@ neovim.override {
withRuby = false;
configure = {
customRC = ''
# here your custom viml configuration goes!
" here your custom viml configuration goes!
'';
packages.myVimPackage = with pkgs.vimPlugins; {
# See examples below on how to use custom packages.
@@ -47,7 +47,7 @@ neovim-qt.override {
neovim = neovim.override {
configure = {
customRC = ''
# your custom viml configuration
" your custom viml configuration
'';
};
};