Improve diff highlights and add tab keybindings

This commit is contained in:
Fábio André Damas 2025-04-02 10:51:50 +01:00
parent 570f69e551
commit 60cc9e5ffe
3 changed files with 48 additions and 2 deletions

View file

@ -7,6 +7,10 @@ return {
require("tokyonight").setup({
transparent = false,
dim_inactive = true,
on_highlights = function(highlights)
-- Make delete sections in diff look better
highlights["DiffDelete"]["fg"] = "#212331"
end,
})
vim.cmd.colorscheme "tokyonight-night"
end,