lvim.keys.normal_mode["t"] = ":lua ToggleTheme() " function ToggleTheme() if (vim.api.nvim_get_option("background") == "dark") then vim.api.nvim_command("set background=light") else vim.api.nvim_command("set background=dark") end end