neovim-flake/config/init.nix

14 lines
256 B
Nix
Raw Normal View History

# Basic housekeeping stuff that might run in a typical `init.lua` file.
{
colorschemes.rose-pine.enable = true;
opts = {
laststatus = 3;
relativenumber = true;
number = true;
shiftwidth = 2;
tabstop = 4;
2024-09-18 01:18:35 -07:00
foldlevel = 15;
};
}