diff --git a/home/base/core/yazi.nix b/home/base/core/yazi.nix index 08fa2859..92ba566d 100644 --- a/home/base/core/yazi.nix +++ b/home/base/core/yazi.nix @@ -11,6 +11,12 @@ # Changing working directory when exiting Yazi enableBashIntegration = true; enableNushellIntegration = true; + settings = { + manager = { + show_hidden = true; + sort_dir_first = true; + }; + }; }; xdg.configFile."yazi/theme.toml".source = "${nur-ryan4yin.packages.${pkgs.system}.catppuccin-yazi}/mocha.toml"; diff --git a/home/base/tui/editors/neovim/README.md b/home/base/tui/editors/neovim/README.md index cedbd3fc..3d4a362f 100644 --- a/home/base/tui/editors/neovim/README.md +++ b/home/base/tui/editors/neovim/README.md @@ -112,7 +112,18 @@ plugin. | Comment Line(support multiple lines) | ` + /` | | Open filepath/URL at cursor(neovim's builtin command) | `gx` | | Find files by name (fzf) | ` + ff` | +| Find files by name (include hidden files) | ` + fF` | | Grep string in files (ripgrep) | ` + fw` | +| Grep string in files (include hidden files) | ` + fW` | + +### Git + +| Action | Shortcut | +| -------------------------- | --------------- | +| Git Commits (repository) | `: + gc` | +| Git Commits (current file) | `: + gC` | +| Git Branches | `: + gb` | +| Git Status | `: + gt` | ### Sessions