my-nvim-setup/examples/init.lua

12 lines
458 B
Lua
Raw Normal View History

-- Please check NvChad docs if you're totally new to nvchad + dont know lua!!
2022-01-30 12:51:46 +05:30
-- This is an example init file in /lua/custom/
-- this init.lua can load stuffs etc too so treat it like your ~/.config/nvim/
-- MAPPINGS
2022-01-07 19:58:05 +05:30
local map = require("core.utils").map
2022-01-07 19:58:05 +05:30
map("n", "<leader>cc", ":Telescope <CR>")
map("n", "<leader>q", ":q <CR>")
2022-01-30 12:51:46 +05:30
-- 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