Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TechDufus committed Feb 7, 2024
1 parent 4451dd9 commit c51c0ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/neovim/files/lua/techdufus/core/keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ keymap(normal_mode, "<C-l>", "<C-w>l", opts)

keymap(normal_mode, ";", ":", opts)

keymap(normal_mode, "<left>", ":echohl WarningMsg<Bar>echo 'USE \'h\' you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<right>", ":echohl WarningMsg<Bar>echo 'USE \'l\' you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<up>", ":echohl WarningMsg<Bar>echo 'USE \'k\' you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<down>", ":echohl WarningMsg<Bar>echo 'USE \'j\' you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<left>", ":echohl WarningMsg<Bar>echo 'USE h you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<right>", ":echohl WarningMsg<Bar>echo 'USE l you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<up>", ":echohl WarningMsg<Bar>echo 'USE k you SWINE!'<Bar>echohl None<CR>", opts)
keymap(normal_mode, "<down>", ":echohl WarningMsg<Bar>echo 'USE j you SWINE!'<Bar>echohl None<CR>", opts)

keymap(normal_mode, "<leader>b", ":Telescope buffers<cr>", opts)
-- Unhilight search --
Expand Down

0 comments on commit c51c0ee

Please sign in to comment.