Created
August 26, 2022 22:37
-
-
Save ddanielsantos/dd692d9acacb3d18a1bdffffea0db49c to your computer and use it in GitHub Desktop.
Revisions
-
ddanielsantos renamed this gist
Aug 26, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ddanielsantos created this gist
Aug 26, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ lvim.keys.normal_mode["<leader>t"] = ":lua ToggleTheme() <cr>" 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