Compare commits
2 Commits
a68cd06f99
...
f9d5c1f65a
| Author | SHA1 | Date | |
|---|---|---|---|
|
f9d5c1f65a
|
|||
|
fa4126ab3d
|
@ -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; }
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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')
|
||||||
|
|||||||
Reference in New Issue
Block a user