Initial commit
This commit is contained in:
31
lua/plugins/mappings.lua
Normal file
31
lua/plugins/mappings.lua
Normal file
@@ -0,0 +1,31 @@
|
||||
local M = {}
|
||||
|
||||
M.bufdel = {
|
||||
closeBuffer = "<leader>x"
|
||||
}
|
||||
|
||||
M.bufferline = {
|
||||
nextBuffer = "<TAB>",
|
||||
prevBuffer = "<S-Tab"
|
||||
}
|
||||
|
||||
M.gitsigns = {
|
||||
blameLine = "<leader>gb",
|
||||
diffThis = "<leader>gd"
|
||||
}
|
||||
|
||||
M.nvimtree = {
|
||||
toggle = "<C-n>",
|
||||
focus = "<leader>e"
|
||||
}
|
||||
|
||||
M.telescope = {
|
||||
buffers = "<leader>fb",
|
||||
diagnostics = "<leader>fd",
|
||||
liveGrep = "<leader>fw",
|
||||
files = "<leader>ff",
|
||||
gitCommits = "<leader>fgc",
|
||||
gitStatus = "<leader>fgs"
|
||||
}
|
||||
|
||||
return M
|
||||
Reference in New Issue
Block a user