add lazyvim keymaps
This commit is contained in:
parent
08d68c00b7
commit
1489d5e976
3 changed files with 515 additions and 0 deletions
45
config/plugins/themes/default.nix
Normal file
45
config/plugins/themes/default.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{config, ...}: let
|
||||
lua = x: {__raw = x;};
|
||||
in {
|
||||
colorschemes = {
|
||||
catppuccin = {
|
||||
enable = true;
|
||||
background = {
|
||||
light = "macchiato";
|
||||
dark = "mocha";
|
||||
};
|
||||
flavour = "frappe"; # "latte", "mocha", "frappe", "macchiato" or raw lua code
|
||||
disableBold = false;
|
||||
disableItalic = false;
|
||||
disableUnderline = false;
|
||||
transparentBackground = true;
|
||||
integrations = {
|
||||
cmp = true;
|
||||
noice = true;
|
||||
notify = true;
|
||||
gitsigns = true;
|
||||
which_key = true;
|
||||
illuminate = {
|
||||
enabled = true;
|
||||
};
|
||||
treesitter = true;
|
||||
treesitter_context = true;
|
||||
telescope.enabled = true;
|
||||
indent_blankline.enabled = true;
|
||||
mini.enabled = true;
|
||||
native_lsp = {
|
||||
enabled = true;
|
||||
inlay_hints = {
|
||||
background = true;
|
||||
};
|
||||
underlines = {
|
||||
errors = ["underline"];
|
||||
hints = ["underline"];
|
||||
information = ["underline"];
|
||||
warnings = ["underline"];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue