mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-07 07:09:15 +00:00
ref(nvim): formatted entire config
This commit is contained in:
parent
57db1d60e4
commit
d83c5c1ace
16 changed files with 280 additions and 280 deletions
|
|
@ -5,15 +5,15 @@ local mark = require "harpoon.mark"
|
|||
local map = vim.keymap.set
|
||||
|
||||
-- add and view
|
||||
map({ 'n', 'i' }, '<A-c>', function() mark.add_file() end)
|
||||
map({ 'n', 'i' }, '<A-g>', function() ui.toggle_quick_menu() end)
|
||||
map({ "n", "i" }, "<A-c>", function() mark.add_file() end)
|
||||
map({ "n", "i" }, "<A-g>", function() ui.toggle_quick_menu() end)
|
||||
|
||||
-- switch it up!
|
||||
map({ 'n', 'i' }, '<A-h>', function() ui.nav_file(1) end)
|
||||
map({ 'n', 'i' }, '<A-t>', function() ui.nav_file(2) end)
|
||||
map({ 'n', 'i' }, '<A-n>', function() ui.nav_file(3) end)
|
||||
map({ 'n', 'i' }, '<A-s>', function() ui.nav_file(4) end)
|
||||
map({ 'n', 'i' }, '<A-m>', function() ui.nav_file(5) end)
|
||||
map({ 'n', 'i' }, '<A-w>', function() ui.nav_file(6) end)
|
||||
map({ 'n', 'i' }, '<A-v>', function() ui.nav_file(7) end)
|
||||
map({ 'n', 'i' }, '<A-z>', function() ui.nav_file(8) end)
|
||||
map({ "n", "i" }, "<A-h>", function() ui.nav_file(1) end)
|
||||
map({ "n", "i" }, "<A-t>", function() ui.nav_file(2) end)
|
||||
map({ "n", "i" }, "<A-n>", function() ui.nav_file(3) end)
|
||||
map({ "n", "i" }, "<A-s>", function() ui.nav_file(4) end)
|
||||
map({ "n", "i" }, "<A-m>", function() ui.nav_file(5) end)
|
||||
map({ "n", "i" }, "<A-w>", function() ui.nav_file(6) end)
|
||||
map({ "n", "i" }, "<A-v>", function() ui.nav_file(7) end)
|
||||
map({ "n", "i" }, "<A-z>", function() ui.nav_file(8) end)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue