Fuxx
This commit is contained in:
parent
8268fba83d
commit
7ed2a6e110
9565 changed files with 1315332 additions and 90 deletions
14
home/.config/nvim/lua/keymap-config/init.lua
Normal file
14
home/.config/nvim/lua/keymap-config/init.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
local map = vim.api.nvim_set_keymap
|
||||
local opts = { noremap = true, silent = true }
|
||||
|
||||
vim.g.mapleader = " " -- leader key
|
||||
|
||||
--> nvim tree mappings <--
|
||||
map("n", "<leader>e", ":NvimTreeToggle<CR>", opts)
|
||||
map("n", "<leader>gt", ":NvimTreeFocus<CR>", opts)
|
||||
|
||||
|
||||
--> telescope mappings <--
|
||||
map("n", "<leader>ff", ":Telescope find_files<cr>", opts)
|
||||
map("n", "<leader>fg", ":Telescope live_grep<cr>", opts)
|
||||
map("n", "<leader>fb", ":Telescope buffers<cr>", opts)
|
Loading…
Add table
Add a link
Reference in a new issue