Set NixOS specific line spacing for nvim.

This commit is contained in:
2025-09-02 10:12:18 +02:00
parent 3c6023ef4d
commit 8d61a29691

View File

@ -67,6 +67,7 @@
in in
'' ''
vim.opt.clipboard = "unnamedplus" vim.opt.clipboard = "unnamedplus"
vim.opt.shiftwidth = 2
vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim}") vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim}")
@ -88,11 +89,5 @@
}) })
''; '';
# extraLuaConfig =
# # lua
# ''
# vim.opt.clipboard = "unnamedplus"
# vim.opt.shiftwidth = 2
# '';
}; };
} }