Cleaned some plugins

This commit is contained in:
Norm Rasmussen
2023-02-06 18:57:37 -05:00
parent dbcc866570
commit ffc57af6fb
5 changed files with 73 additions and 40 deletions

View File

@ -102,7 +102,7 @@ M(
)
M(
'n', '<C-w>', "@w<CR>",
'n', '<C-r>', "@w<CR>",
{silent=true, noremap=true},
"Add Warning/Error",
"add_error",
@ -147,3 +147,10 @@ M(
"md_lint_format",
"Use mdlint Formatting on Current File."
)
M(
'n', '<leader>r30', ":resize 30<CR>",
{silent=true, noremap=true},
"Resize30",
"resize_30",
"Resize Window to #30"
)

View File

@ -7,7 +7,11 @@ local telescope_installer = require('telescope').setup({
file_browser = {
mappings = {
["i"] = {
["<C-c>"] = fb_actions.create
["<C-c>"] = fb_actions.create,
["<C-y>"] = fb_actions.copy,
["<C-r>"] = fb_actions.rename,
["<C-w>"] = fb_actions.goto_cwd,
["<C-o>"] = fb_actions.open
},
["n"] = {