refactor: clean up home
This commit is contained in:
parent
3d04d338d1
commit
68047c894e
5 changed files with 67 additions and 63 deletions
|
@ -3,9 +3,9 @@
|
|||
./ags.nix
|
||||
./clipse.nix
|
||||
./comma.nix
|
||||
./zsh.nix
|
||||
./direnv.nix
|
||||
./dunst.nix
|
||||
./editorconfig.nix
|
||||
./firefox.nix
|
||||
./fuzzel.nix
|
||||
./fzf.nix
|
||||
|
@ -23,5 +23,6 @@
|
|||
./yazi.nix
|
||||
./zellij.nix
|
||||
./zoxide.nix
|
||||
./zsh.nix
|
||||
];
|
||||
}
|
||||
|
|
23
configs/programs/editorconfig.nix
Normal file
23
configs/programs/editorconfig.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
home-manager.users.rafiq = {
|
||||
editorconfig = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"*" = {
|
||||
end_of_line = "lf";
|
||||
insert_final_newline = true;
|
||||
trim_trailing_whitespace = true;
|
||||
charset = "utf-8";
|
||||
indent_style = "space";
|
||||
indent_size = 2;
|
||||
};
|
||||
"package.json" = {
|
||||
indent_style = "unset";
|
||||
};
|
||||
"*.lock" = {
|
||||
indent_size = "unset";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue