add first working draft
This commit is contained in:
commit
c591c88f43
13 changed files with 179 additions and 0 deletions
10
lua/weeheavy/remap.lua
Normal file
10
lua/weeheavy/remap.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
-- keyboard shortcuts
|
||||
|
||||
-- Leader key set to space, base for any key combo
|
||||
vim.g.mapleader = " "
|
||||
|
||||
vim.keymap.set("n", "<leader>r", vim.cmd.Ex, { noremap = true, desc = "netrw File Browser" }) -- netrw file explorer
|
||||
|
||||
-- Telescope
|
||||
vim.keymap.set("n", "<leader>e", ":Telescope file_browser<CR>", { noremap = true, desc = "Telescope Browser" })
|
||||
vim.keymap.set("n", "<leader>f", ":Telescope find_files<CR>", { noremap = true, desc = "Telescope File Search" })
|
||||
Loading…
Add table
Add a link
Reference in a new issue