Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
21 lines
404 B
Nix
21 lines
404 B
Nix
{ ... }: {
|
|
imports = [
|
|
./keymaps.nix
|
|
];
|
|
dependencies.ripgrep.enable = true;
|
|
|
|
plugins.telescope = {
|
|
enable = true;
|
|
extensions.file-browser = {
|
|
enable = true;
|
|
settings = {
|
|
git_status = true;
|
|
hijack_netrw = true;
|
|
respect_gitignore = true;
|
|
fzf-native.enable = true;
|
|
fzf-native.settings.case_mode = "ignore_case";
|
|
};
|
|
};
|
|
};
|
|
}
|