diff --git a/README.md b/README.md index 923ddfa..82cab4b 100644 --- a/README.md +++ b/README.md @@ -225,10 +225,8 @@ blog = { **Fuzzy Finding (Telescope):** | Key | Action | |-----|--------| -| `ff` | Find files in current directory | -| `fg` | Live grep - search text in all files | -| `fb` | Browse open buffers | -| `fh` | Search help documentation | +| `t` | Find files in current directory | +| `g` | Live grep - search text in all files | **Telescope Navigation:** | Key | Action | diff --git a/config/firefox-bookmarks.nix b/config/firefox-bookmarks.nix index bdfaab4..e4b55a0 100644 --- a/config/firefox-bookmarks.nix +++ b/config/firefox-bookmarks.nix @@ -78,10 +78,6 @@ name = "Plex"; url = "https://plex.nas.yanlincs.com"; } - { - name = "Emby"; - url = "https://emby.nas.yanlincs.com"; - } { name = "AudioBookShelf"; url = "https://audio.nas.yanlincs.com"; diff --git a/modules/nvim.nix b/modules/nvim.nix index 1ffdf28..d4fb303 100644 --- a/modules/nvim.nix +++ b/modules/nvim.nix @@ -116,18 +116,14 @@ enable = true; keymaps = { # Find files using Telescope command-line sugar - "ff" = "find_files"; - "fg" = "live_grep"; - "fb" = "buffers"; - "fh" = "help_tags"; + "t" = "find_files"; + "g" = "live_grep"; }; settings = { defaults = { file_ignore_patterns = [ "^.git/" "^node_modules/" - "^target/" - "^dist/" ".DS_Store" ]; layout_config = {