Skip to content

Commit

Permalink
📝 Add missing commas in neovim's config
Browse files Browse the repository at this point in the history
  • Loading branch information
Freed-Wu committed Nov 27, 2023
1 parent bc91e25 commit 1d1c35f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/resources/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ endif

```lua
vim.api.nvim_create_autocmd({ "BufEnter" }, {
pattern = { "build.sh" "*.subpackage.sh" "PKGBUILD" "*.install"
"makepkg.conf" "*.ebuild" "*.eclass" "color.map" "make.conf" },
pattern = { "build.sh", "*.subpackage.sh", "PKGBUILD", "*.install",
"makepkg.conf", "*.ebuild", "*.eclass", "color.map", "make.conf" },
callback = function()
vim.lsp.start({
name = "termux",
Expand Down

0 comments on commit 1d1c35f

Please sign in to comment.