generated from AstroNvim/user_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmappings.lua
223 lines (207 loc) · 6.35 KB
/
mappings.lua
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
local astro_utils = require "astronvim.utils"
local harpoon = require "harpoon"
-- local hop = require "hop"
-- local hint = require "hop.hint"
-- local directions = hint.HintDirection
-- local position = hint.HintPosition
return {
n = {
-- LSP
["<leader>k"] = { function() vim.lsp.buf.hover() end, desc = "LSP Hover" },
["<leader>b"] = { name = "Buffers" },
["<leader>bn"] = { "<cmd>tabnew<cr>", desc = "New tab" },
["<leader>bD"] = {
function()
require("astronvim.utils.status").heirline.buffer_picker(
function(bufnr) require("astronvim.utils.buffer").close(bufnr) end
)
end,
desc = "Pick to close",
},
-- Buffer switching
-- NOTE: Maybe add detour? Or add another keybind
["<Tab>"] = {
function()
if #vim.t.bufs > 1 then
require("telescope.builtin").buffers { sort_mru = true, ignore_current_buffer = true }
else
astro_utils.notify "No other buffers open"
end
end,
desc = "Switch Buffers",
},
-- oil
["-"] = {
function()
vim.cmd [[50vsplit]]
vim.cmd [[Oil]]
end,
desc = "Open parent directory",
},
-- harpoon
["<leader>h"] = { false, desc = "Harpoon" },
["<leader>hh"] = { function() harpoon.ui:toggle_quick_menu(harpoon:list()) end, desc = "Harpoon toggle" },
["<leader>ha"] = { function() harpoon:list():add() end, desc = "Harpoon add to list" },
["<leader>hr"] = { function() harpoon:list():remove() end, desc = "Harpoon remove from list" },
["<leader>h1"] = { function() harpoon:list():select(1) end, desc = "Harpoon select 1" },
["<leader>h2"] = { function() harpoon:list():select(2) end, desc = "Harpoon select 2" },
["<leader>h3"] = { function() harpoon:list():select(3) end, desc = "Harpoon select 3" },
["<leader>h4"] = { function() harpoon:list():select(4) end, desc = "Harpoon select 4" },
-- telescope
["<leader>fq"] = { "<cmd>Telescope quickfix<cr>", desc = "Find quickfix" },
["<leader>cf"] = { "<cmd>Telescope changed_files<cr>", desc = "Find changed files" },
-- Zen Mode
["<leader>z"] = { "<cmd>ZenMode<cr>", desc = "Zen Mode" },
-- portal
-- ["<leader>o"] = { "<cmd>Portal jumplist backward<cr>", desc = "Portal jump backward" },
-- ["<leader>i"] = { "<cmd>Portal jumplist forward<cr>", desc = "Portal jump forward" },
-- Hop
-- ["<leader><leader>o"] = {
-- function()
-- vim.cmd [[:HopLineStart]]
-- vim.schedule(function()
-- vim.cmd [[normal! o]]
-- vim.cmd [[normal! o]]
-- vim.cmd [[startinsert]]
-- end)
-- end,
-- desc = "Hop Line Insert new line below",
-- },
-- ["<leader><leader>O"] = {
-- function()
-- vim.cmd [[:HopLineStart]]
-- vim.schedule(function()
-- vim.cmd [[normal! O]]
-- vim.cmd [[normal! O]]
-- vim.cmd [[startinsert]]
-- end)
-- end,
-- desc = "Hop Line Insert new line above",
-- },
-- easymotion-like
-- ["<leader><leader>w"] = {
-- function()
-- hop.hint_words {
-- direction = directions.AFTER_CURSOR,
-- }
-- end,
-- desc = "Hop Word after cursor",
-- },
-- ["<leader><leader>b"] = {
-- function()
-- hop.hint_words {
-- direction = directions.BEFORE_CURSOR,
-- }
-- end,
-- desc = "Hop Word before cursor",
-- },
-- ["<leader><leader>j"] = {
-- function()
-- hop.hint_lines_skip_whitespace {
-- direction = directions.AFTER_CURSOR,
-- }
-- end,
-- desc = "Hop Line after cursor",
-- },
-- ["<leader><leader>k"] = {
-- function()
-- hop.hint_lines_skip_whitespace {
-- direction = directions.BEFORE_CURSOR,
-- }
-- end,
-- desc = "Hop line before cursor",
-- },
-- sneak-like
-- ["e"] = {
-- function()
-- hop.hint_words {
-- direction = directions.AFTER_CURSOR,
-- hint_position = position.END,
-- }
-- end,
-- desc = "Hop end of word after cursor",
-- },
-- ["ge"] = {
-- function()
-- hop.hint_words {
-- direction = directions.BEFORE_CURSOR,
-- hint_position = position.END,
-- }
-- end,
-- desc = "Hop end of word after cursor",
-- },
-- Detour
["<leader>gd"] = {
function()
require("detour").Detour()
vim.lsp.buf.definition()
end,
desc = "Open detour and go to global definition",
},
-- Pretty Hover
["<leader>lp"] = { function() require("pretty_hover").hover() end, desc = "Open Pretty Hover" },
["<esc>"] = false,
},
v = {
["J"] = { ":m '>+1<CR>gv=gv", desc = "Move line down" },
["K"] = { ":m '<-2<CR>gv=gv", desc = "Move line up" },
["<"] = { "<gv", desc = "Shift left" },
[">"] = { ">gv", desc = "Shift right" },
-- easymotion-like
-- ["<leader><leader>w"] = {
-- function()
-- hop.hint_words {
-- direction = directions.AFTER_CURSOR,
-- }
-- end,
-- desc = "Hop Word after cursor",
-- },
-- ["<leader><leader>b"] = {
-- function()
-- hop.hint_words {
-- direction = directions.BEFORE_CURSOR,
-- }
-- end,
-- desc = "Hop Word before cursor",
-- },
-- ["<leader><leader>j"] = {
-- function()
-- hop.hint_lines_skip_whitespace {
-- direction = directions.AFTER_CURSOR,
-- }
-- end,
-- desc = "Hop Line after cursor",
-- },
-- ["<leader><leader>k"] = {
-- function()
-- hop.hint_lines_skip_whitespace {
-- direction = directions.BEFORE_CURSOR,
-- }
-- end,
-- desc = "Hop line before cursor",
-- },
-- sneak-like
-- ["e"] = {
-- function()
-- hop.hint_words {
-- direction = directions.AFTER_CURSOR,
-- hint_position = position.END,
-- }
-- end,
-- desc = "Hop end of word after cursor",
-- },
-- ["ge"] = {
-- function()
-- hop.hint_words {
-- direction = directions.BEFORE_CURSOR,
-- hint_position = position.END,
-- }
-- end,
-- desc = "Hop end of word after cursor",
-- },
["<esc>"] = false,
},
t = {
["<esc>"] = false,
},
}