Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,21 @@ useful if your system is read-only or uses immutable datastructures.

Default: `1`

Whether to enable built-in mappings. If you decide to disable this, then you can
Whether to enable built-in mappings.

To disable:
```vim
let g:doge_enable_mappings = 0
```

Or with lua
```lua
-- be sure to call this before the plugin gets loaded.
-- For example, in LazyVim, call in `init`
vim.api.nvim_set_var('doge_enable_mappings', 0)
```

If you decide to disable this, then you can
copy the mappings below and change them to your needs:

```vim
Expand Down