Browse Source

Merge branch 'master' of ssh://gitea.ryanreed.net:3001/ryanreed/dotfiles-chezmoi

pull/1/head
Ryan Reed 3 years ago
parent
commit
ca600ae49b
2 changed files with 11 additions and 2 deletions
  1. +1
    -1
      .chezmoiignore
  2. +10
    -1
      dot_zsh/README.md

+ 1
- 1
.chezmoiignore View File

@ -1,4 +1,4 @@
README.md
**/README.md
{{ if (hasKey . "firefox") | not }}
.mozilla
{{- end }}


+ 10
- 1
dot_zsh/README.md View File

@ -4,6 +4,7 @@
<!-- vim-markdown-toc GFM -->
* [Keybindings](#keybindings)
* [Aliases](#aliases)
* [Functions](#functions)
* [Customizations - ~/.zshrc.local](#customizations---zshrclocal)
@ -11,6 +12,15 @@
<!-- vim-markdown-toc -->
## Keybindings
| Keybinding | Description |
| -------------------- | ------------------------------------------------------------------------------- |
| `<UP|DOWN>` | Autocompletes previous entries (e.g. `echo<UP>` returns previous echo commands) |
| `<CTRL><LEFT|RIGHT>` | Move forward/backward per word |
| `<ALT><.>` | Last argument of previous command |
## Aliases
| Alias | Command | Description |
@ -80,4 +90,3 @@ yubidecrypt () {
gpg --decrypt --output "${output}" "${1}" && echo "${1} -> ${output}"
}
```

Loading…
Cancel
Save