update keybindings

This commit is contained in:
Daylin Morgan 2022-07-21 17:41:26 -05:00
parent 750b04d63d
commit c3f737e7c8
2 changed files with 2 additions and 3 deletions

View file

@ -3,6 +3,4 @@
# enable touch on only laptop monitor # enable touch on only laptop monitor
xinput --map-to-output 'ELAN901C:00 04F3:2C29' eDP-1 xinput --map-to-output 'ELAN901C:00 04F3:2C29' eDP-1
pactl load-module module-switch-on-connect
xss-lock -- ~/bin/lock & xss-lock -- ~/bin/lock &

View file

@ -14,6 +14,8 @@ map('n', "H", "^", { noremap = true })
map('n', "L", "$", { noremap = true }) map('n', "L", "$", { noremap = true })
map('n', 'j', "v:count ? 'j' : 'gj'", { expr = true, noremap = true }) map('n', 'j', "v:count ? 'j' : 'gj'", { expr = true, noremap = true })
map('n', 'k', "v:count ? 'k' : 'gk'", { expr = true, noremap = true }) map('n', 'k', "v:count ? 'k' : 'gk'", { expr = true, noremap = true })
map('n', "<C-j>","}",{noremap = true})
map('n', "<C-k>","{",{noremap = true})
-- zettelkasten keybindings -- zettelkasten keybindings
-- Create a new note after asking for its title. -- Create a new note after asking for its title.
@ -41,7 +43,6 @@ mappings["z"] = {
} }
mappings["s"]["p"] = { "<cmd>Telescope projects<CR>", "Recent Projects" } mappings["s"]["p"] = { "<cmd>Telescope projects<CR>", "Recent Projects" }
mappings["s"]["w"] = { "<cmd>Telescope live_grep<CR>", "Find Word" } mappings["s"]["w"] = { "<cmd>Telescope live_grep<CR>", "Find Word" }
-- mappings[';'] = { "<cmd>Alpha<CR>", "Dashboard" }
-- Change Telescope navigation to use j and k for navigation and n and p for history in both input and normal mode. -- Change Telescope navigation to use j and k for navigation and n and p for history in both input and normal mode.