nixvim/config/core.nix

30 lines
521 B
Nix
Raw Normal View History

2024-08-20 05:43:03 +00:00
{
config = {
# Color scheme.
colorschemes.catppuccin = {
enable = true;
settings.flavour = "mocha";
};
# Options.
opts = {
# Indent settings.
tabstop = 2;
shiftwidth = 2;
expandtab = true;
# Line number.
number = true;
relativenumber = true;
signcolumn = "yes";
# Search case sensitivity.
ic = true;
};
# Clipboard.
clipboard = {
register = "unnamedplus";
providers.xclip.enable = true;
};
};
}