dotfiles/configfile/nvim/lua/custom/chadrc.lua

34 lines
557 B
Lua
Raw Normal View History

2022-12-22 10:18:05 +00:00
-- ChadRC.lua
2022-02-14 20:37:02 +00:00
local M = {}
2022-12-22 10:18:05 +00:00
-- M.options = {
-- relativenumber = true,
-- smarttab = true
-- }
2022-02-14 20:37:02 +00:00
M.ui = {
2022-12-22 10:18:05 +00:00
theme = "tokyonight"
2022-02-14 20:37:02 +00:00
}
2022-12-22 10:18:05 +00:00
M.plugins = require "custom.plugins"
2022-02-14 20:37:02 +00:00
2022-12-23 08:40:35 +00:00
M.mappings = {
teleskope = {
n = {
["<leader>?"] = { "<cmd> Telescope keymaps <CR>", "show keys" },
}
}
2022-12-22 10:18:05 +00:00
-- -- custom = {}, -- custom user mappings
--
-- custom = {
-- cheatsheet = "<leader>ch",
-- line_number_toggle = "<leader>n", -- toggle line number
-- update_nvchad = "<leader>uu",
-- new_tab = "<leader>t",
-- },
2022-12-23 08:40:35 +00:00
}
2022-02-14 20:37:02 +00:00
return M
2022-12-22 10:18:05 +00:00