nixvim/config/options.nix

9 lines
153 B
Nix
Raw Normal View History

2024-12-13 19:01:54 -07:00
{self, ...}: {
globalOpts = {
# Line numbers
number = true;
relativenumber = true;
};
2024-12-14 16:17:44 -07:00
extraConfigLua = "vim.g.rustfmt_autosave = 1";
2024-12-13 19:01:54 -07:00
}