18 lines
492 B
Lua
18 lines
492 B
Lua
#! /usr/bin/env lua
|
|
--
|
|
-- maps.lua
|
|
-- Copyright (C) 2023 veypi <i@veypi.com>
|
|
--
|
|
-- Distributed under terms of the MIT license.
|
|
--
|
|
|
|
|
|
lvim.keys.normal_mode["<F2>"] = ":NvimTreeToggle<CR>"
|
|
lvim.keys.normal_mode["q"] = ":bd<CR>"
|
|
lvim.keys.normal_mode["Q"] = ":qa!<CR>"
|
|
-- lvim.keys.normal_mode["<<leader>-[>"] = ":BufferLineCyclePrev<CR>"
|
|
|
|
-- lvim.builtin.which_key.mappings["\["] = ":BufferLineCyclePrev<CR>"
|
|
-- nmap <leader>[ :BufferLineCyclePrev<CR>
|
|
-- nmap <leader>] :BufferLineCycleNext<CR>
|