AutoYADM commit: 2025-02-17 15:30:06

This commit is contained in:
Daniel Fichtinger 2025-02-17 15:30:06 -05:00
parent 34035c24c8
commit 27841097e3
2 changed files with 13 additions and 9 deletions

View file

@ -161,17 +161,19 @@ KeyBind:
- "Enter" - "Enter"
- "Down" - "Down"
- "ctrl+N" - "ctrl+N"
- "n"
up: up:
- "Up" - "Up"
- "e"
- "ctrl+p" - "ctrl+p"
top: top:
- "Home" - "E"
bottom: bottom:
- "End" - "N"
left: left:
- "left" - "m"
right: right:
- "right" - "i"
half_left: half_left:
- "ctrl+left" - "ctrl+left"
half_right: half_right:
@ -202,9 +204,9 @@ KeyBind:
previous_section: previous_section:
- "^" - "^"
mark: mark:
- "m" - "k"
remove_mark: remove_mark:
- "M" - "K"
remove_all_mark: remove_all_mark:
- "ctrl+delete" - "ctrl+delete"
next_mark: next_mark:
@ -238,9 +240,9 @@ KeyBind:
goto: goto:
- "g" - "g"
next_search: next_search:
- "n" - "j"
next_backsearch: next_backsearch:
- "N" - "J"
next_doc: next_doc:
- "]" - "]"
previous_doc: previous_doc:
@ -251,7 +253,7 @@ KeyBind:
multi_color: multi_color:
- "." - "."
jump_target: jump_target:
- "j" - "ctrl+j"
Mode: Mode:
markdown: markdown:

2
.zshrc
View file

@ -4,6 +4,7 @@ ZSH="$HOME/.oh-my-zsh"
export DISABLE_LS_COLORS=true export DISABLE_LS_COLORS=true
export PAGER=ov export PAGER=ov
export MANPAGER="ov --section-delimiter '^[^\s]' --section-header" export MANPAGER="ov --section-delimiter '^[^\s]' --section-header"
export EGET_BIN="/home/fic/.eget/bin"
plugins=(ssh-agent git github zsh-autosuggestions zsh-syntax-highlighting aliases copybuffer copyfile copypath fancy-ctrl-z systemd ) plugins=(ssh-agent git github zsh-autosuggestions zsh-syntax-highlighting aliases copybuffer copyfile copypath fancy-ctrl-z systemd )
# plugins=(ssh-agent git github zsh-autosuggestions zsh-syntax-highlighting aliases colored-man-pages copybuffer copyfile copypath fancy-ctrl-z systemd ) # plugins=(ssh-agent git github zsh-autosuggestions zsh-syntax-highlighting aliases colored-man-pages copybuffer copyfile copypath fancy-ctrl-z systemd )
source ~/.profile source ~/.profile
@ -100,6 +101,7 @@ export PATH="$PATH:/home/fic/.local/bin:/home/fic/.cargo/bin:/home/fic/go/bin"
export PATH="$PATH:/home/fic/.local/share/bob/nvim-bin" export PATH="$PATH:/home/fic/.local/share/bob/nvim-bin"
export PATH="$PATH:/home/fic/.luarocks/bin" export PATH="$PATH:/home/fic/.luarocks/bin"
export PATH="$PATH:/home/fic/.local/share/npm/bin" export PATH="$PATH:/home/fic/.local/share/npm/bin"
export PATH="$PATH:/home/fic/.local/share/npm/bin"
fpath=(~/.zsh.d/ $fpath) fpath=(~/.zsh.d/ $fpath)
function nh() { function nh() {
nohup "$@" > /dev/null 2>&1 & nohup "$@" > /dev/null 2>&1 &