mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-12 20:23:50 +00:00
added minifiles keymap, resolved keymap conflict
This commit is contained in:
parent
bc4cd2a521
commit
5fd11168cd
@ -4,12 +4,12 @@ return {
|
||||
lazy = false,
|
||||
keys = {
|
||||
{
|
||||
'<leader>f',
|
||||
'<leader>fb',
|
||||
function()
|
||||
require('conform').format { async = true, lsp_fallback = true }
|
||||
end,
|
||||
mode = '',
|
||||
desc = '[F]ormat buffer',
|
||||
desc = '[F]ormat [B]uffer',
|
||||
},
|
||||
},
|
||||
opts = {
|
||||
|
@ -19,6 +19,9 @@ return {
|
||||
|
||||
-- Simple file explorer with in-buffer-editing
|
||||
require('mini.files').setup()
|
||||
vim.keymap.set({ 'n', 'v' }, '<leader>fe', function()
|
||||
MiniFiles.open()
|
||||
end, { desc = '[F]ile [E]xplorer' })
|
||||
|
||||
-- Simple and easy statusline.
|
||||
-- You could remove this setup call if you don't like it,
|
||||
|
@ -34,6 +34,7 @@ return {
|
||||
['<leader>t'] = { name = '[T]oggle', _ = 'which_key_ignore' },
|
||||
['<leader>dn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>l'] = { name = '[L]ist', _ = 'which_key_ignore' },
|
||||
['<leader>f'] = { name = '[F]ormat/[F]ile', _ = 'which_key_ignore' },
|
||||
}
|
||||
|
||||
-- register which-key VISUAL mode
|
||||
@ -47,6 +48,7 @@ return {
|
||||
['<leader>dn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>pn'] = { name = '[N]o', _ = 'which_key_ignore' },
|
||||
['<leader>l'] = { name = '[L]ist', _ = 'which_key_ignore' },
|
||||
['<leader>f'] = { name = '[F]ormat/[F]ile', _ = 'which_key_ignore' },
|
||||
}, { mode = 'v' })
|
||||
end,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user