mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
13 lines
255 B
Nix
13 lines
255 B
Nix
# 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;
|
|
foldlevel = 9;
|
|
};
|
|
}
|