{ programs.nixvim = { plugins.telescope = { enable = true; keymaps = { # find files using telescope command-line sugar "ff" = "find_files"; "fg" = "live_grep"; "b" = "buffers"; "fh" = "help_tags"; "fd" = "diagnostics"; # fzf like bindings "" = "git_files"; "p" = "oldfiles"; "" = "live_grep"; }; settings.defaults = { file_ignore_patterns = [ "^.git/" "^.mypy_cache/" "^__pycache__/" "^output/" "^data/" "%.ipynb" ]; set_env.COLORTERM = "truecolor"; }; }; }; }