Compare commits

..

2 Commits

Author SHA1 Message Date
f9d5c1f65a nvim: Disable transparent mode for neovide 2025-02-26 10:05:04 +01:00
fa4126ab3d niri: Add debug shortcuts 2025-02-26 10:03:10 +01:00
2 changed files with 27 additions and 22 deletions

View File

@ -481,4 +481,9 @@ binds {
// Powers off the monitors. To turn them back on, do any input like // Powers off the monitors. To turn them back on, do any input like
// moving the mouse or pressing any other key. // moving the mouse or pressing any other key.
// Mod+Shift+P { power-off-monitors; } // Mod+Shift+P { power-off-monitors; }
// Debugging
Mod+Shift+Ctrl+T { toggle-debug-tint; }
Mod+Shift+Ctrl+O { debug-toggle-opaque-regions; }
Mod+Shift+Ctrl+D { debug-toggle-damage; }
} }

View File

@ -1,28 +1,28 @@
-- setup must be called before loading the colorscheme -- setup must be called before loading the colorscheme
-- Default options: -- Default options:
require("gruvbox").setup({ require("gruvbox").setup({
terminal_colors = true, -- add neovim terminal colors terminal_colors = true, -- add neovim terminal colors
undercurl = true, undercurl = true,
underline = true, underline = true,
bold = true, bold = true,
italic = { italic = {
strings = true, strings = true,
emphasis = true, emphasis = true,
comments = true, comments = true,
operators = false, operators = false,
folds = true, folds = true,
}, },
strikethrough = true, strikethrough = true,
invert_selection = false, invert_selection = false,
invert_signs = false, invert_signs = false,
invert_tabline = false, invert_tabline = false,
invert_intend_guides = false, invert_intend_guides = false,
inverse = true, -- invert background for search, diffs, statuslines and errors inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = "", -- can be "hard", "soft" or empty string contrast = "", -- can be "hard", "soft" or empty string
palette_overrides = {}, palette_overrides = {},
overrides = {}, overrides = {},
dim_inactive = false, dim_inactive = false,
transparent_mode = true, transparent_mode = not vim.g.neovide,
}) })
require('color-scheme') require('color-scheme')