Skip to content

Commit

Permalink
README.md: fix pattern example
Browse files Browse the repository at this point in the history
  • Loading branch information
glacambre committed May 9, 2023
1 parent ee4ef31 commit 386239e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ vim.g.firenvim_config = {
With this configuration, `takeover` will be set to `always` on all websites. If we wanted to override this value on british websites, we could add the following lines to our init.vim. Notice how the priority of this new regex is higher than that of the `.*` regex:

```lua
vim.g.firenvim_config.localSettings["https?://[^/]+\.co\.uk/"] = { takeover = 'never', priority = 1 }
vim.g.firenvim_config.localSettings["https?://[^/]+\\.co\\.uk/"] = { takeover = 'never', priority = 1 }
```

### Configuring what elements Firenvim should appear on
Expand Down

0 comments on commit 386239e

Please sign in to comment.