๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update catppuccin colorscheme

kacaii ea085500 b5fa5592

+46 -16
+46 -16
.config/nvim/lua/plugins/colorscheme.lua
··· 6 6 lazy = false, 7 7 priority = 1000, 8 8 opts = { 9 - flavour = "mocha", -- latte, frappe, macchiato, mocha 10 - background = { light = "latte", dark = "mocha" }, 11 - transparent_background = true, -- disables setting the background color. 9 + flavour = "mocha", 12 10 13 - show_end_of_buffer = false, -- shows the '~' characters after the end of buffers 14 - term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) 11 + background = { 12 + light = "latte", 13 + dark = "mocha", 14 + }, 15 15 16 - default_integrations = true, 17 - auto_integrations = true, 16 + transparent_background = true, 17 + 18 + float = { 19 + transparent = true, 20 + solid = false, 21 + }, 18 22 19 - dim_inactive = { enabled = false, shade = "dark", percentage = 0.15 }, 23 + show_end_of_buffer = false, 24 + term_colors = false, 20 25 21 - no_italic = false, -- Force no italic 22 - no_bold = false, -- Force no bold 23 - no_underline = false, -- Force no underline 26 + auto_integrations = true, 24 27 25 - highlight = { 26 - enable = true, 27 - additional_vim_regex_highlighting = false, 28 + dim_inactive = { 29 + enabled = false, 30 + shade = "dark", 31 + percentage = 0.15, 28 32 }, 29 33 30 - -- Handles the styles of general hi groups (see `:h highlight-args`): 34 + no_italic = false, 35 + no_bold = false, 36 + no_underline = false, 37 + 31 38 styles = { 32 39 comments = {}, 33 40 conditionals = {}, ··· 43 50 operators = {}, 44 51 }, 45 52 53 + lsp_styles = { 54 + virtual_text = { 55 + errors = { "italic" }, 56 + hints = { "italic" }, 57 + warnings = { "italic" }, 58 + information = { "italic" }, 59 + ok = { "italic" }, 60 + }, 61 + 62 + underlines = { 63 + errors = { "underline" }, 64 + hints = { "underline" }, 65 + warnings = { "underline" }, 66 + information = { "underline" }, 67 + ok = { "underline" }, 68 + }, 69 + 70 + inlay_hints = { 71 + background = true, 72 + }, 73 + }, 74 + 46 75 color_overrides = { 47 76 mocha = { 48 77 blue = "#87afff", ··· 62 91 }, 63 92 64 93 integrations = { 94 + blink_cmp = { style = "bordered" }, 95 + 65 96 lualine = { 66 97 all = function(colors) 67 98 return { ··· 82 113 custom_highlights = function(colors) 83 114 return { 84 115 85 - -- ๓ฑฅ Core 86 116 ["@module"] = { fg = colors.lavender }, 87 117 Comment = { fg = colors.overlay1 }, 88 118 Type = { fg = colors.yellow },