diff options
| author | omagdy <omar.professional8777@gmail.com> | 2025-07-17 19:15:29 +0300 |
|---|---|---|
| committer | omagdy <omar.professional8777@gmail.com> | 2025-07-17 19:15:29 +0300 |
| commit | 14d2af5be5d3c7c7d04345399feed63480a0d1cf (patch) | |
| tree | 49dc1b82ce1d45003f40e0da947c767f9c1e6790 /zsh/.zshrc | |
| parent | 52d21d68621c9d3dd2a8a6d4bb50acca31e99ee4 (diff) | |
| download | dotfiles-14d2af5be5d3c7c7d04345399feed63480a0d1cf.tar.xz dotfiles-14d2af5be5d3c7c7d04345399feed63480a0d1cf.zip | |
Random tinkering
Diffstat (limited to 'zsh/.zshrc')
| -rw-r--r-- | zsh/.zshrc | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,5 @@ +# Add deno completions to search path +if [[ ":$FPATH:" != *":/home/omar/.zsh/completions:"* ]]; then export FPATH="/home/omar/.zsh/completions:$FPATH"; fi ### Added by Zinit's installer if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f" @@ -39,6 +41,7 @@ export MANPAGER='nvim +Man!' # export MANPAGER="sh -c 'col -bx | bat -l man -p'" # Pager +# export PAGER='nvim +Man!' export PAGER='less' # start zoxide @@ -180,9 +183,9 @@ function y() { # Interactive cd -fcd() { +function fcd() { local dir - dir=$(find ~ -type d | fzf) + dir=$(fd --full-path ~/programming/ --type directory | fzf) if [[ -n $dir ]]; then cd "$dir" fi @@ -200,3 +203,4 @@ esac # Bind ctrl-r but not up arrow eval "$(atuin init zsh --disable-up-arrow)" +. "/home/omar/.deno/env"
\ No newline at end of file |
