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,8 +67,9 @@
in
''
vim.opt.clipboard = "unnamedplus"
vim.opt.shiftwidth = 2
vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim}")
vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim}")
require("lazy").setup({
defaults = { lazy = true },
@ -88,11 +89,5 @@
})
'';
# extraLuaConfig =
# # lua
# ''
# vim.opt.clipboard = "unnamedplus"
# vim.opt.shiftwidth = 2
# '';
};
}