Skip to content

Commit

Permalink
fix!: ensure consistency on grammar
Browse files Browse the repository at this point in the history
Closes #56
~~~
  • Loading branch information
cvigilv committed Sep 22, 2024
1 parent a35c2d1 commit f9df426
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/esqueleto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To setup |esqueleto|, tow things must be done:
First, |esqueleto| setup in the `init.lua` file is as follows: >
require('esqueleto').setup({
-- Default templates directory
directories = { '~/.config/nvim/skeleton/' },
directories = { '~/.config/nvim/skeletons/' },
-- Patterns to detect for template insetion (empty by default,
-- adding as an example)
Expand Down Expand Up @@ -75,7 +75,7 @@ steps:

Based in the example seen above, the tree structure of our template directory
should be: >
~/.config/nvim/skeleton/
~/.config/nvim/skeletons/
├── LICENSE
├── README.md
└── python
Expand Down
2 changes: 1 addition & 1 deletion lua/esqueleto/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local M = {}

M.default_config = {
autouse = true,
directories = { vim.fn.stdpath("config") .. "/skeleton" },
directories = { vim.fn.stdpath("config") .. "/skeletons" },
patterns = function(dir) return vim.fn.readdir(dir) end,
wildcards = {
expand = true,
Expand Down

0 comments on commit f9df426

Please sign in to comment.