Skip to content

Commit

Permalink
feat(keymap): add <leader>L for Lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Pluchart committed Dec 17, 2024
1 parent a4b2f17 commit 7d25026
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/custom/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ u.map('n', '<C-u>', '<C-u>zz', { desc = 'Center cursor after moving up half-page
u.map('n', '<C-f>', '<C-f>zz', { desc = 'Center cursor after moving forward page' })
u.map('n', '<C-b>', '<C-b>zz', { desc = 'Center cursor after moving backward page' })

--- previsou on_attach gitsigns mapping here
--- lazygit
u.map('n', '<leader>L', ':Lazy<CR>', { desc = 'Show Lazy UI' })

--- previous on_attach gitsigns mapping here
local gitsigns = require('gitsigns')
local jump_hunk_opts = { preview = true, navigation_message = 'f' }

Expand Down

0 comments on commit 7d25026

Please sign in to comment.