Skip to content

Commit

Permalink
chore(docs): auto-generate vimdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
declancm authored and github-actions[bot] committed Jun 28, 2024
1 parent c90c3f4 commit 182ec91
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions doc/cinnamon.nvim.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ CONFIGURATION *cinnamon.nvim-configuration*
A settings table can be passed into the setup function for custom options.


DEFAULT SETTINGS ~
DEFAULT OPTIONS ~

>lua
return {
-- Disable the plugin
disabled = false,
keymaps = {
-- Enable the provided 'basic' keymaps
basic = true,
basic = false,
-- Enable the provided 'extra' keymaps
extra = false,
},
Expand Down Expand Up @@ -94,7 +94,13 @@ EXAMPLE CONFIGURATION ~

>lua
require("cinnamon").setup {
keymaps = { extra = true }, -- Enable the 'extra' keymaps
-- Enable all provided keymaps
keymaps = {
basic = true,
extra = true,
},
-- Only scroll the window
options = { mode = "window" },
}
<

Expand Down

0 comments on commit 182ec91

Please sign in to comment.