2021-11-19 02:14:06 +00:00
|
|
|
-- Please check NvChad docs if you're totally new to nvchad + dont know lua!!
|
2022-01-30 07:21:46 +00:00
|
|
|
-- This is an example init file in /lua/custom/
|
|
|
|
-- this init.lua can load stuffs etc too so treat it like your ~/.config/nvim/
|
2021-11-19 02:14:06 +00:00
|
|
|
|
|
|
|
-- MAPPINGS
|
2022-01-07 14:28:05 +00:00
|
|
|
local map = require("core.utils").map
|
2021-11-19 02:14:06 +00:00
|
|
|
|
2022-01-07 14:28:05 +00:00
|
|
|
map("n", "<leader>cc", ":Telescope <CR>")
|
|
|
|
map("n", "<leader>q", ":q <CR>")
|
2021-11-19 02:14:06 +00:00
|
|
|
|
2022-01-30 07:21:46 +00:00
|
|
|
-- NOTE: the 4th argument in the map function is be a table i.e options but its most likely un-needed so dont worry about it
|