config/users/natalie/vim.nix

28 lines
457 B
Nix
Raw Normal View History

2025-05-21 10:44:59 -07:00
{pkgs, ...}: {
2025-05-19 21:42:58 -07:00
imports = [
./vim/default.nix
];
2025-05-12 15:19:01 -07:00
vim = {
2025-05-21 10:44:59 -07:00
options = {
tabstop = 2;
softtabstop = 2;
shiftwidth = 2;
undofile = true;
swapfile = false;
showmode = false;
2025-05-21 11:55:34 -07:00
foldlevel = 99;
foldcolumn = "1";
foldlevelstart = 99;
foldenable = true;
2025-05-21 10:44:59 -07:00
};
autocmds = [
];
2025-05-12 15:19:01 -07:00
theme = {
name = "catppuccin";
style = "mocha";
};
2025-05-20 21:30:54 -07:00
hideSearchHighlight = true;
2025-05-12 15:19:01 -07:00
};
}