Skip to content

Commit aec93fd

Browse files
committed
chore: Format
1 parent 24d6387 commit aec93fd

File tree

2 files changed

+49
-47
lines changed

2 files changed

+49
-47
lines changed

.markdownlint.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
MD013: false
2+
MD033: false

README.md

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -378,27 +378,27 @@ vim.g.neominimap = {
378378

379379
```lua
380380
{
381-
winhighlight = table.concat({
382-
"Normal:NeominimapBackground",
383-
"FloatBorder:NeominimapBorder",
384-
"CursorLine:NeominimapCursorLine",
385-
"CursorLineNr:NeominimapCursorLineNr",
386-
"CursorLineSign:NeominimapCursorLineSign",
387-
"CursorLineFold:NeominimapCursorLineFold",
388-
}, ","),
389-
wrap = false,
390-
foldcolumn = "0",
391-
signcolumn = "auto",
392-
number = false,
393-
relativenumber = false,
394-
scrolloff = 99999, -- To center minimap
395-
sidescrolloff = 0,
396-
winblend = 0,
397-
cursorline = true,
398-
spell = false,
399-
list = false,
400-
fillchars = "eob: ",
401-
winfixwidth = true,
381+
winhighlight = table.concat({
382+
"Normal:NeominimapBackground",
383+
"FloatBorder:NeominimapBorder",
384+
"CursorLine:NeominimapCursorLine",
385+
"CursorLineNr:NeominimapCursorLineNr",
386+
"CursorLineSign:NeominimapCursorLineSign",
387+
"CursorLineFold:NeominimapCursorLineFold",
388+
}, ","),
389+
wrap = false,
390+
foldcolumn = "0",
391+
signcolumn = "auto",
392+
number = false,
393+
relativenumber = false,
394+
scrolloff = 99999, -- To center minimap
395+
sidescrolloff = 0,
396+
winblend = 0,
397+
cursorline = true,
398+
spell = false,
399+
list = false,
400+
fillchars = "eob: ",
401+
winfixwidth = true,
402402
}
403403
```
404404

@@ -409,12 +409,12 @@ winfixwidth = true,
409409

410410
```lua
411411
{
412-
buftype = "nofile",
413-
filetype = "neominimap",
414-
swapfile = false,
415-
bufhidden = "hide",
416-
undolevels = -1,
417-
modifiable = false,
412+
buftype = "nofile",
413+
filetype = "neominimap",
414+
swapfile = false,
415+
bufhidden = "hide",
416+
undolevels = -1,
417+
modifiable = false,
418418
}
419419
```
420420

@@ -660,16 +660,16 @@ neominimap components:
660660
```lua
661661
local neominimap = require("neominimap.statusline")
662662
local minimap_extension = {
663-
sections = {
664-
lualine_c = {
665-
neominimap.fullname,
666-
},
667-
lualine_z = {
668-
neominimap.position,
669-
"progress",
670-
},
663+
sections = {
664+
lualine_c = {
665+
neominimap.fullname,
666+
},
667+
lualine_z = {
668+
neominimap.position,
669+
"progress",
671670
},
672-
filetypes = { "neominimap" },
671+
},
672+
filetypes = { "neominimap" },
673673
}
674674
require('lualine').setup { extensions = { minimap_extension } }
675675
```
@@ -688,17 +688,17 @@ The default Lualine extension provided by the plugin is structured as follows:
688688
```lua
689689
{
690690
sections = {
691-
winbar = {},
692-
lualine_a = {
693-
M.plugin_name,
694-
},
695-
lualine_c = {
696-
M.shortname,
697-
},
698-
lualine_z = {
699-
M.position,
700-
"progress",
701-
},
691+
winbar = {},
692+
lualine_a = {
693+
M.plugin_name,
694+
},
695+
lualine_c = {
696+
M.shortname,
697+
},
698+
lualine_z = {
699+
M.position,
700+
"progress",
701+
},
702702
},
703703
filetypes = { "neominimap" },
704704
}

0 commit comments

Comments
 (0)