summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/mango/remap.lua
blob: 787ae1e380be7e4be8803160eb0a9b8b957366d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
local lib = require('mango.lib')
local remap = lib.remap

vim.g.mapleader = ' '

-- Make adjustments for my custom keyboard layout
remap('nov', '€', '$')

-- Better frame navigation
remap('n', '<C-h>', '<C-w>h')
remap('n', '<C-j>', '<C-w>j')
remap('n', '<C-k>', '<C-w>k')
remap('n', '<C-l>', '<C-w>l')

-- I prefer visual-line mode on ‘V’
remap('n', 'V', '<C-v>')
remap('n', '<C-v>', 'V')

-- Move selections up and down
remap('v', '<C-k>', ":m '<-2<CR>gv=gv")
remap('v', '<C-j>', ":m '>+1<CR>gv=gv")

-- Don’t move cursor with various commands
remap('n', 'J', 'mzJ`z')
remap('n', '<C-d>', '<C-d>zz')
remap('n', '<C-u>', '<C-u>zz')
remap('n', 'n', 'nzzzv')
remap('n', 'N', 'Nzzzv')

-- Swap the jump-to-mark bindings
-- remap('nv', "'", '`')
-- remap('nv', '`', "'")

-- Transpose characters; for some reason it has a noticable delay if I just give
-- a string instead of lambda functions
remap('n', '<leader>t', function() vim.cmd.normal('"zx"zp') end)
remap('n', '<leader>T', function() vim.cmd.normal('"zX"zp') end)

-- Open netrw quickly
remap('n', '-', ':Ex<CR>')

-- Open netrw in a vertical- or horizontal split.  The split is made manually
-- instead of by using :Vexplore or :Sexplore so that it’s made on the right or
-- bottom instead of the left or top
remap('n', '–', ':vsplit | Ex<CR>')
remap('n', 'g–', ':split | Ex<CR>')

remap('n', '<leader>s', function()
	vim.cmd('vsplit')
	lib.scratch_buffer()
end)
remap('n', '<leader>S', function()
	vim.cmd('split')
	lib.scratch_buffer()
end)