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

Configure Feed

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

terminal is now translucent

kacaii 90458dc7 d1429a94

+28 -23
+5
.config/ghostty/config
··· 1 1 theme = catppuccin-mocha.conf 2 + background-opacity = 0.9 3 + background-blur = true 4 + shell-integration-features = no-cursor 5 + cursor-style = block 6 + font-family = "Maple Mono NF" 2 7 3 8 # This is the configuration file for Ghostty. 4 9 #
+23 -23
.config/nvim/lua/plugins/colorscheme.lua
··· 8 8 opts = { 9 9 flavour = "mocha", -- latte, frappe, macchiato, mocha 10 10 background = { light = "latte", dark = "mocha" }, 11 - transparent_background = false, -- disables setting the background color. 11 + transparent_background = true, -- disables setting the background color. 12 12 13 13 show_end_of_buffer = false, -- shows the '~' characters after the end of buffers 14 14 term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`) ··· 86 86 ["@module"] = { fg = colors.lavender }, 87 87 Comment = { fg = colors.overlay1 }, 88 88 Type = { fg = colors.yellow }, 89 - LspInlayHint = { fg = colors.overlay1, bg = colors.base }, 89 + LspInlayHint = { fg = colors.overlay1, bg = colors.none }, 90 90 CursorLine = { bg = custom_bg }, 91 91 Label = { fg = colors.blue }, 92 92 LineNr = { fg = colors.overlay1 }, ··· 96 96 LspReferenceText = { bg = colors.none, bold = true }, 97 97 98 98 -- ๎ญฟ Making the float window same color as the bg 99 - NormalFloat = { bg = colors.base }, 100 - FloatTitle = { fg = colors.overlay0, bg = colors.base }, 101 - FloatBorder = { fg = colors.overlay1, bg = colors.base }, 99 + NormalFloat = { bg = colors.none }, 100 + FloatTitle = { fg = colors.overlay0, bg = colors.none }, 101 + FloatBorder = { fg = colors.overlay1, bg = colors.none }, 102 102 103 103 -- ๏’ง TODO 104 - TodoBgFIX = { fg = colors.red, bg = colors.base }, 105 - TodoBgHACK = { fg = colors.yellow, bg = colors.base }, 106 - TodoBgNOTE = { fg = colors.text, bg = colors.base }, 107 - TodoBgPERF = { fg = colors.yellow, bg = colors.base }, 108 - TodoBgTEST = { fg = colors.mauve, bg = colors.base }, 109 - TodoBgTODO = { fg = colors.blue, bg = colors.base }, 110 - TodoBgWARN = { fg = colors.yellow, bg = colors.base }, 111 - TodoBgCAUTION = { fg = colors.red, bg = colors.base }, 104 + TodoBgFIX = { fg = colors.red, bg = colors.none }, 105 + TodoBgHACK = { fg = colors.yellow, bg = colors.none }, 106 + TodoBgNOTE = { fg = colors.text, bg = colors.none }, 107 + TodoBgPERF = { fg = colors.yellow, bg = colors.none }, 108 + TodoBgTEST = { fg = colors.mauve, bg = colors.none }, 109 + TodoBgTODO = { fg = colors.blue, bg = colors.none }, 110 + TodoBgWARN = { fg = colors.yellow, bg = colors.none }, 111 + TodoBgCAUTION = { fg = colors.red, bg = colors.none }, 112 112 113 113 -- ๓ฑ€ Completion 114 114 Pmenu = { bg = colors.none }, ··· 118 118 BlinkCmpKindStruct = { fg = colors.yellow }, 119 119 BlinkCmpKindEnum = { fg = colors.yellow }, 120 120 BlinkCmpKindEnumMember = { fg = colors.peach }, 121 - BlinkCmpMenuBorder = { fg = colors.overlay1, bg = colors.base }, 122 - BlinkCmpDoc = { fg = colors.text, bg = colors.base }, 121 + BlinkCmpMenuBorder = { fg = colors.overlay1, bg = colors.none }, 122 + BlinkCmpDoc = { fg = colors.text, bg = colors.none }, 123 123 124 124 -- ๎ฏŒ Yanky 125 - YankyYanked = { fg = colors.base, bg = colors.peach }, 126 - YankyPut = { fg = colors.base, bg = colors.peach }, 125 + YankyYanked = { fg = colors.none, bg = colors.peach }, 126 + YankyPut = { fg = colors.none, bg = colors.peach }, 127 127 128 128 -- ๓ฑฅฐ Snacks 129 129 SnacksPickerRule = { bg = colors.overlay1 }, ··· 136 136 SnacksInputBorder = { fg = colors.text }, 137 137 138 138 -- ๎Žฟ Noice 139 - NoiceScrollbar = { bg = colors.base }, 139 + NoiceScrollbar = { bg = colors.none }, 140 140 NoiceScrollbarThumb = { bg = colors.overlay1 }, 141 141 142 142 -- ๎œพ Markdown 143 - RenderMarkdownH1Bg = { bg = colors.base }, 144 - RenderMarkdownH2Bg = { bg = colors.base }, 145 - RenderMarkdownH3Bg = { bg = colors.base }, 146 - RenderMarkdownH4Bg = { bg = colors.base }, 147 - RenderMarkdownH5Bg = { bg = colors.base }, 143 + RenderMarkdownH1Bg = { bg = colors.none }, 144 + RenderMarkdownH2Bg = { bg = colors.none }, 145 + RenderMarkdownH3Bg = { bg = colors.none }, 146 + RenderMarkdownH4Bg = { bg = colors.none }, 147 + RenderMarkdownH5Bg = { bg = colors.none }, 148 148 149 149 RenderMarkdownCodeInline = { bg = colors.mantle }, 150 150 RenderMarkdownBullet = { fg = colors.text },