config/users/natalie/vim.nix
2025-05-21 11:55:34 -07:00

27 lines
457 B
Nix

{pkgs, ...}: {
imports = [
./vim/default.nix
];
vim = {
options = {
tabstop = 2;
softtabstop = 2;
shiftwidth = 2;
undofile = true;
swapfile = false;
showmode = false;
foldlevel = 99;
foldcolumn = "1";
foldlevelstart = 99;
foldenable = true;
};
autocmds = [
];
theme = {
name = "catppuccin";
style = "mocha";
};
hideSearchHighlight = true;
};
}