dotfiles/configfile/nvim/lua/custom/chadrc.lua
2022-12-23 09:40:35 +01:00

34 lines
557 B
Lua

-- ChadRC.lua
local M = {}
-- M.options = {
-- relativenumber = true,
-- smarttab = true
-- }
M.ui = {
theme = "tokyonight"
}
M.plugins = require "custom.plugins"
M.mappings = {
teleskope = {
n = {
["<leader>?"] = { "<cmd> Telescope keymaps <CR>", "show keys" },
}
}
-- -- custom = {}, -- custom user mappings
--
-- custom = {
-- cheatsheet = "<leader>ch",
-- line_number_toggle = "<leader>n", -- toggle line number
-- update_nvchad = "<leader>uu",
-- new_tab = "<leader>t",
-- },
}
return M