New plugin, updated nvim-tree's deprecated open-on-startup

This commit is contained in:
Norm Rasmussen
2023-01-30 17:28:16 -05:00
parent 0330fae3b2
commit 726894d56a
6 changed files with 69 additions and 44 deletions

View File

@ -56,7 +56,7 @@ local M = Mapper.map
M(
'n', '<leader>P', ":MarkdownPreview<CR>",
{silent = true, noremap = true},
"Markdown",
"Markdown Preview",
"md_preview",
"Display Markdown preview in Qutebrowser"
)
@ -64,7 +64,7 @@ M(
M(
'n', '<leader>fe', ":Telescope file_browser<CR>",
{silent=true, noremap=true},
"Telescope",
"Telescope Files",
"telescope-file-browser",
"Find files and directories in telescope"
)
@ -72,7 +72,7 @@ M(
M(
'n', '<C-t>', "@t<CR>",
{silent=true, noremap=true},
"Todo Comments",
"Add Todo",
"todo_todo",
"Add To-do/Task to the beginning of the line"
)
@ -80,7 +80,7 @@ M(
M(
'n', '<C-s>', "@s<CR>",
{silent=true, noremap=true},
"Todo Comments",
"Add Solutions Engineering",
"todo_seng",
"Add Solutions Engineering to the beginning of the line"
)
@ -88,7 +88,7 @@ M(
M(
'n', '<C-f>', "@f<CR>",
{silent=true, noremap=true},
"Todo Comments",
"Add Feature",
"add_feat",
"Add Feature Request tag to the beginning of the line. "
)
@ -96,7 +96,7 @@ M(
M(
'n', '<C-x>', "@c<CR>",
{silent=true, noremap=true},
"Todo Comments",
"Replace with Complete",
"add_complete",
"Replace tag with Complete tag at beginning of the line."
)
@ -104,7 +104,7 @@ M(
M(
'n', '<C-w>', "@w<CR>",
{silent=true, noremap=true},
"Todo Comments",
"Add Warning/Error",
"add_error",
"Add Warning/Error tag at the beginning of the line."
)
@ -112,7 +112,7 @@ M(
M(
'n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | :resize +10<CR>",
{silent=true, noremap=true},
"Show Todos",
"Show Todo Tags",
"show_todos",
"Show Todo Tags."
)
@ -120,7 +120,7 @@ M(
M(
'n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>",
{silent=true, noremap=true},
"Show Todos",
"Show Feature Tags",
"show_features",
"Show Feature Requests."
)
@ -128,7 +128,7 @@ M(
M(
'n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>",
{silent=true, noremap=true},
"Show Todos",
"Show Warning Tags",
"show_warnings",
"Show Errors Tags."
)
@ -136,7 +136,14 @@ M(
M(
'n', '<leader>b', ":! black %<CR>",
{silent=true, noremap=true},
"Black Cwf",
"Black Formatting",
"black_current_file",
"Use Black Formatting on Current File."
)
M(
'n', '<leader>m', ":! markdownlint -f %<CR>",
{silent=true, noremap=true},
"Markdownlint",
"md_lint_format",
"Use mdlint Formatting on Current File."
)