rm theme toggler config
This commit is contained in:
parent
27c33790ef
commit
2a8afcb7b6
|
@ -32,7 +32,6 @@ M.options = {
|
|||
copy_del = true, -- copy deleted text ( dd key ), visual and normal mode
|
||||
insert_nav = true, -- navigation in insertmode
|
||||
window_nav = true,
|
||||
theme_toggler = false,
|
||||
|
||||
-- updater
|
||||
update_url = "https://github.com/NvChad/NvChad",
|
||||
|
@ -46,11 +45,6 @@ M.ui = {
|
|||
hl_override = "", -- path of your file that contains highlights
|
||||
italic_comments = false,
|
||||
theme = "onedark", -- default theme
|
||||
-- toggle between two themes, see theme_toggler mappings
|
||||
theme_toggler = {
|
||||
"onedark",
|
||||
"gruvchad",
|
||||
},
|
||||
|
||||
-- Change terminal bg to nvim theme's bg color so it'll match well
|
||||
-- For Ex : if you have onedark set in nvchad, set onedark's bg color on your terminal
|
||||
|
@ -124,7 +118,6 @@ M.mappings = {
|
|||
new_buffer = "<S-t>",
|
||||
new_tab = "<C-t>b",
|
||||
save_file = "<C-s>", -- save file using :w
|
||||
theme_toggler = "<leader>tt", -- see in ui.theme_toggler
|
||||
},
|
||||
|
||||
-- navigation in insert mode, only if enabled in options
|
||||
|
|
|
@ -68,15 +68,6 @@ M.misc = function()
|
|||
map("n", wnav.moveUp, "<C-w>k")
|
||||
map("n", wnav.moveDown, "<C-w>j")
|
||||
end
|
||||
|
||||
-- check the theme toggler
|
||||
if nvChad_options.theme_toggler then
|
||||
map(
|
||||
"n",
|
||||
maps.misc.theme_toggler,
|
||||
":lua require('nvchad').toggle_theme(require('core.utils').load_config().ui.theme_toggler) <CR>"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
local function required_mappings()
|
||||
|
|
Loading…
Reference in New Issue