my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1.1 KiB

3 years ago
  1. # Nanoc plugin
  2. This plugin adds some aliases and autocompletion for common [Nanoc](https://nanoc.ws) commands.
  3. To use it, add `nanoc` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... nanoc)
  6. ```
  7. ## Aliases
  8. | Alias | Command | Description |
  9. |-------|-----------------------|-----------------------------------------------------------------------------------|
  10. | n | `nanoc` | Main Nanoc command |
  11. | nco | `nanoc compile` | Compile all items of the current site |
  12. | ncs | `nanoc create-site` | Create a new site at the given path. The site will use the filesystem data source |
  13. | nd | `nanoc deploy` | Deploy the compiled site to the destination (specified with `--target`) |
  14. | np | `nanoc prune` | Remove files not managed by Nanoc from the output directory |
  15. | nv | `nanoc view` | Start the static web server (on port 3000 and all IP addresses, unless specified) |