{ programs.nixvim.plugins.telescope = { enable = true; keymaps = { "ff" = "find_files"; "b" = "buffers"; "fh" = "help_tags"; "gf" = "git_files"; "of" = "oldfiles"; # "fg" = "live_grep"; # "fd" = "diagnostics"; }; keymapsSilent = true; settings.defaults = { file_ignore_patterns = [ "^.git/" "^.mypy_cache/" "^__pycache__/" "^output/" "^data/" "%.ipynb" ]; set_env.COLORTERM = "truecolor"; }; }; }