Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork312
Share your custom theme#323
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Usingoverwriting colors feature, I will start first withmy configuration Important Kindly link to your configuration if possible :) |
BetaWas this translation helpful?Give feedback.
All reactions
👍 35❤️ 75
Replies: 41 comments 111 replies
-
Might be a bit outdated buthttps://github.com/insomnia-creator/neovim-conf |
BetaWas this translation helpful?Give feedback.
All reactions
-
I use this config on sway as well, albeit not as pretty. |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 1
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
My config ishere |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Why is nvimtree color so bland 🤔 |
BetaWas this translation helpful?Give feedback.
All reactions
-
|
BetaWas this translation helpful?Give feedback.
All reactions
-
Looks like nightshift, my latte flavour also has a custom softer base |
BetaWas this translation helpful?Give feedback.
All reactions
-
How to change the cursor, in your case pink block, from the theme? |
BetaWas this translation helpful?Give feedback.
All reactions
-
transparent backgrounds also look good 😺 |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 7
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
nice, I copied it, just made a few changes, I just imitated the terminal wallpaper hahaha, because i love one piece anime |
BetaWas this translation helpful?Give feedback.
All reactions
👍 6
-
Okay... where did you get your wallpaper? |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Should be this one: |
BetaWas this translation helpful?Give feedback.
All reactions
-
|
BetaWas this translation helpful?Give feedback.
All reactions
-
How do you keep part of the lualine opaque?thx |
BetaWas this translation helpful?Give feedback.
All reactions
-
Attempting to restore the original theme based on The config ishere. |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 14🚀 9
-
I even took your configuration as a reference to improve treesitter integration, thank you so much! |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 3
-
how do you add the three dots in place of the whitespace ? |
BetaWas this translation helpful?Give feedback.
All reactions
-
It's one white dot per whitespace. Use |
BetaWas this translation helpful?Give feedback.
All reactions
-
I'm more of a pink kind of person. Appreciate the |
BetaWas this translation helpful?Give feedback.
All reactions
👍 26❤️ 1
-
BetaWas this translation helpful?Give feedback.
All reactions
-
Made some highlight changes to the Tabline to better integrate everything with my tmux configuration. Also included is my take on a configuration for Mason.nvim's installer which someone beat me to adding as an integration in#305 |
BetaWas this translation helpful?Give feedback.
All reactions
-
Here is my take, still work in progress once its done I will update further |
BetaWas this translation helpful?Give feedback.
All reactions
-
Could you share the color scheme/color pallet configuration? |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Sorry I did not notice your message, but if I recall correctly this is what I was using, |
BetaWas this translation helpful?Give feedback.
All reactions
-
hey how do I use this in my configuration? |
BetaWas this translation helpful?Give feedback.
All reactions
-
Tweaked nvim-cmp configuration borrowed from oxocarbon. |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 9👀 12
-
Thanks, i made layout work, but i was not able to put the colors on the background and the icons with the color black. |
BetaWas this translation helpful?Give feedback.
All reactions
-
That's an excellent question! My current configuration does not have the inverted background and I can't quite remember how I did that. It's possible I was mucking around in the actual source of the plugin and that's since been overwritten. I do like that style though. I'll try to reproduce it and report back here. |
BetaWas this translation helpful?Give feedback.
All reactions
-
Yeah, I think that was the hack I made at the time. I changedthese lines so that CmpItemKindSnippet= {fg=C.base,bg=C.mauve }, Not quite sure yet how to make that change via |
BetaWas this translation helpful?Give feedback.
All reactions
-
Adding a custom_highlights=function(C)return {CmpItemKindSnippet= {fg=C.base,bg=C.mauve },CmpItemKindKeyword= {fg=C.base,bg=C.red },CmpItemKindText= {fg=C.base,bg=C.teal },CmpItemKindMethod= {fg=C.base,bg=C.blue },CmpItemKindConstructor= {fg=C.base,bg=C.blue },CmpItemKindFunction= {fg=C.base,bg=C.blue },CmpItemKindFolder= {fg=C.base,bg=C.blue },CmpItemKindModule= {fg=C.base,bg=C.blue },CmpItemKindConstant= {fg=C.base,bg=C.peach },CmpItemKindField= {fg=C.base,bg=C.green },CmpItemKindProperty= {fg=C.base,bg=C.green },CmpItemKindEnum= {fg=C.base,bg=C.green },CmpItemKindUnit= {fg=C.base,bg=C.green },CmpItemKindClass= {fg=C.base,bg=C.yellow },CmpItemKindVariable= {fg=C.base,bg=C.flamingo },CmpItemKindFile= {fg=C.base,bg=C.blue },CmpItemKindInterface= {fg=C.base,bg=C.yellow },CmpItemKindColor= {fg=C.base,bg=C.red },CmpItemKindReference= {fg=C.base,bg=C.red },CmpItemKindEnumMember= {fg=C.base,bg=C.red },CmpItemKindStruct= {fg=C.base,bg=C.blue },CmpItemKindValue= {fg=C.base,bg=C.peach },CmpItemKindEvent= {fg=C.base,bg=C.blue },CmpItemKindOperator= {fg=C.base,bg=C.blue },CmpItemKindTypeParameter= {fg=C.base,bg=C.blue },CmpItemKindCopilot= {fg=C.base,bg=C.teal },}end, |
BetaWas this translation helpful?Give feedback.
All reactions
👍 10
-
Thanks, it worked. |
BetaWas this translation helpful?Give feedback.
All reactions
-
This is Catppuccin CoffeeA grayer version of catppuccin if you're tired of bluish color schemes! |
BetaWas this translation helpful?Give feedback.
All reactions
-
That kinda reminds me of my chadpuccin flavour xd looks very good |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
My version of this great colorscheme |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 25👀 3
-
do you have a link for your setup? |
BetaWas this translation helpful?Give feedback.
All reactions
-
@Strazil001 Yeah. Please share your config 🙏 |
BetaWas this translation helpful?Give feedback.
All reactions
-
still waiting your config |
BetaWas this translation helpful?Give feedback.
All reactions
-
https://github.com/Strazil001/Neovim Sorry for the ( very ) long delay guys |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 3
-
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 5
-
where are the dots? |
BetaWas this translation helpful?Give feedback.
All reactions
-
I guessthere |
BetaWas this translation helpful?Give feedback.
All reactions
-
i tryed, too much hard and complex to me :( |
BetaWas this translation helpful?Give feedback.
All reactions
-
Hi, can you tell me how can i configure the nvim-tree like this? |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Maybe you want to change nvim-tree's background? In that case it's done via the |
BetaWas this translation helpful?Give feedback.
All reactions
-
Thanks for your answer. Actually, I want to change the file icons. Your setting looks more identify. BTW, the lualine configuration is also my favour. |
BetaWas this translation helpful?Give feedback.
All reactions
-
@nullchilly can I tag along and ask which statusline you're using? Just realised the one you're using probably doesnt come straight out of the box |
BetaWas this translation helpful?Give feedback.
All reactions
-
BetaWas this translation helpful?Give feedback.
All reactions
👍 1
Uh oh!
There was an error while loading.Please reload this page.
-
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 62
-
If you hate that return {"ibhagwan/fzf-lua",opts= {fzf_colors=true,defaults= {formatter="path.filename_first", },winopts= {preview= {hidden="hidden", },treesitter= {enable=true, }, },fzf_args="--no-header", },} |
BetaWas this translation helpful?Give feedback.
All reactions
-
hello! I might be missing something or did the original post is missing? I cannot seem to view the overrides nor any screenshot on the og post. Can anyone share please? |
BetaWas this translation helpful?Give feedback.
All reactions
-
@TheRebootr https://gist.github.com/fang2hou/8f87a43c02c26463b1689736cbc3b09e |
BetaWas this translation helpful?Give feedback.
All reactions
-
@fang2hou thank you for sharing. It looks nice!! |
BetaWas this translation helpful?Give feedback.
All reactions
-
@thanhvule0310 has deleted the main comment, if anyone's wondering what was the theme: configreturn {"catppuccin/nvim",name="catppuccin",lazy=false,priority=1000,config=function()require("catppuccin").setup({background= {light="latte",dark="mocha", },color_overrides= {latte= {rosewater="#c14a4a",flamingo="#c14a4a",red="#c14a4a",maroon="#c14a4a",pink="#945e80",mauve="#945e80",peach="#c35e0a",yellow="#b47109",green="#6c782e",teal="#4c7a5d",sky="#4c7a5d",sapphire="#4c7a5d",blue="#45707a",lavender="#45707a",text="#654735",subtext1="#73503c",subtext0="#805942",overlay2="#8c6249",overlay1="#8c856d",overlay0="#a69d81",surface2="#bfb695",surface1="#d1c7a3",surface0="#e3dec3",base="#f9f5d7",mantle="#f0ebce",crust="#e8e3c8", },mocha= {rosewater="#ea6962",flamingo="#ea6962",red="#ea6962",maroon="#ea6962",pink="#d3869b",mauve="#d3869b",peach="#e78a4e",yellow="#d8a657",green="#a9b665",teal="#89b482",sky="#89b482",sapphire="#89b482",blue="#7daea3",lavender="#7daea3",text="#ebdbb2",subtext1="#d5c4a1",subtext0="#bdae93",overlay2="#a89984",overlay1="#928374",overlay0="#595959",surface2="#4d4d4d",surface1="#404040",surface0="#292929",base="#1d2021",mantle="#191b1c",crust="#141617", }, },transparent_background=false,show_end_of_buffer=false,integration_default=false,integrations= {barbecue= {dim_dirname=true,bold_basename=true,dim_context=false,alt_background=false },cmp=true,gitsigns=true,hop=true,illuminate= {enabled=true },native_lsp= {enabled=true,inlay_hints= {background=true } },neogit=true,neotree=true,semantic_tokens=true,treesitter=true,treesitter_context=true,vimwiki=true,which_key=true, },highlight_overrides= {all=function(colors)return {CmpItemMenu= {fg=colors.surface2 },CursorLineNr= {fg=colors.text },FloatBorder= {bg=colors.base,fg=colors.surface0 },GitSignsChange= {fg=colors.peach },LineNr= {fg=colors.overlay0 },LspInfoBorder= {link="FloatBorder"},NeoTreeDirectoryIcon= {fg=colors.subtext1 },NeoTreeDirectoryName= {fg=colors.subtext1 },NeoTreeFloatBorder= {link="TelescopeResultsBorder"},NeoTreeGitConflict= {fg=colors.red },NeoTreeGitDeleted= {fg=colors.red },NeoTreeGitIgnored= {fg=colors.overlay0 },NeoTreeGitModified= {fg=colors.peach },NeoTreeGitStaged= {fg=colors.green },NeoTreeGitUnstaged= {fg=colors.red },NeoTreeGitUntracked= {fg=colors.green },NeoTreeIndent= {fg=colors.surface1 },NeoTreeNormal= {bg=colors.mantle },NeoTreeNormalNC= {bg=colors.mantle },NeoTreeRootName= {fg=colors.subtext1,style= {"bold"} },NeoTreeTabActive= {fg=colors.text,bg=colors.mantle },NeoTreeTabInactive= {fg=colors.surface2,bg=colors.crust },NeoTreeTabSeparatorActive= {fg=colors.mantle,bg=colors.mantle },NeoTreeTabSeparatorInactive= {fg=colors.crust,bg=colors.crust },NeoTreeWinSeparator= {fg=colors.base,bg=colors.base },NormalFloat= {bg=colors.base },Pmenu= {bg=colors.mantle,fg=""},PmenuSel= {bg=colors.surface0,fg=""},TelescopePreviewBorder= {bg=colors.crust,fg=colors.crust },TelescopePreviewNormal= {bg=colors.crust },TelescopePreviewTitle= {fg=colors.crust,bg=colors.crust },TelescopePromptBorder= {bg=colors.surface0,fg=colors.surface0 },TelescopePromptCounter= {fg=colors.mauve,style= {"bold"} },TelescopePromptNormal= {bg=colors.surface0 },TelescopePromptPrefix= {bg=colors.surface0 },TelescopePromptTitle= {fg=colors.surface0,bg=colors.surface0 },TelescopeResultsBorder= {bg=colors.mantle,fg=colors.mantle },TelescopeResultsNormal= {bg=colors.mantle },TelescopeResultsTitle= {fg=colors.mantle,bg=colors.mantle },TelescopeSelection= {bg=colors.surface0 },VertSplit= {bg=colors.base,fg=colors.surface0 },WhichKeyFloat= {bg=colors.mantle },YankHighlight= {bg=colors.surface2 },FidgetTask= {fg=colors.subtext2 },FidgetTitle= {fg=colors.peach },IblIndent= {fg=colors.surface0 },IblScope= {fg=colors.overlay0 },Boolean= {fg=colors.mauve },Number= {fg=colors.mauve },Float= {fg=colors.mauve },PreProc= {fg=colors.mauve },PreCondit= {fg=colors.mauve },Include= {fg=colors.mauve },Define= {fg=colors.mauve },Conditional= {fg=colors.red },Repeat= {fg=colors.red },Keyword= {fg=colors.red },Typedef= {fg=colors.red },Exception= {fg=colors.red },Statement= {fg=colors.red },Error= {fg=colors.red },StorageClass= {fg=colors.peach },Tag= {fg=colors.peach },Label= {fg=colors.peach },Structure= {fg=colors.peach },Operator= {fg=colors.peach },Title= {fg=colors.peach },Special= {fg=colors.yellow },SpecialChar= {fg=colors.yellow },Type= {fg=colors.yellow,style= {"bold"} },Function= {fg=colors.green,style= {"bold"} },Delimiter= {fg=colors.subtext2 },Ignore= {fg=colors.subtext2 },Macro= {fg=colors.teal },TSAnnotation= {fg=colors.mauve },TSAttribute= {fg=colors.mauve },TSBoolean= {fg=colors.mauve },TSCharacter= {fg=colors.teal },TSCharacterSpecial= {link="SpecialChar"},TSComment= {link="Comment"},TSConditional= {fg=colors.red },TSConstBuiltin= {fg=colors.mauve },TSConstMacro= {fg=colors.mauve },TSConstant= {fg=colors.text },TSConstructor= {fg=colors.green },TSDebug= {link="Debug"},TSDefine= {link="Define"},TSEnvironment= {link="Macro"},TSEnvironmentName= {link="Type"},TSError= {link="Error"},TSException= {fg=colors.red },TSField= {fg=colors.blue },TSFloat= {fg=colors.mauve },TSFuncBuiltin= {fg=colors.green },TSFuncMacro= {fg=colors.green },TSFunction= {fg=colors.green },TSFunctionCall= {fg=colors.green },TSInclude= {fg=colors.red },TSKeyword= {fg=colors.red },TSKeywordFunction= {fg=colors.red },TSKeywordOperator= {fg=colors.peach },TSKeywordReturn= {fg=colors.red },TSLabel= {fg=colors.peach },TSLiteral= {link="String"},TSMath= {fg=colors.blue },TSMethod= {fg=colors.green },TSMethodCall= {fg=colors.green },TSNamespace= {fg=colors.yellow },TSNone= {fg=colors.text },TSNumber= {fg=colors.mauve },TSOperator= {fg=colors.peach },TSParameter= {fg=colors.text },TSParameterReference= {fg=colors.text },TSPreProc= {link="PreProc"},TSProperty= {fg=colors.blue },TSPunctBracket= {fg=colors.text },TSPunctDelimiter= {link="Delimiter"},TSPunctSpecial= {fg=colors.blue },TSRepeat= {fg=colors.red },TSStorageClass= {fg=colors.peach },TSStorageClassLifetime= {fg=colors.peach },TSStrike= {fg=colors.subtext2 },TSString= {fg=colors.teal },TSStringEscape= {fg=colors.green },TSStringRegex= {fg=colors.green },TSStringSpecial= {link="SpecialChar"},TSSymbol= {fg=colors.text },TSTag= {fg=colors.peach },TSTagAttribute= {fg=colors.green },TSTagDelimiter= {fg=colors.green },TSText= {fg=colors.green },TSTextReference= {link="Constant"},TSTitle= {link="Title"},TSTodo= {link="Todo"},TSType= {fg=colors.yellow,style= {"bold"} },TSTypeBuiltin= {fg=colors.yellow,style= {"bold"} },TSTypeDefinition= {fg=colors.yellow,style= {"bold"} },TSTypeQualifier= {fg=colors.peach,style= {"bold"} },TSURI= {fg=colors.blue },TSVariable= {fg=colors.text },TSVariableBuiltin= {fg=colors.mauve }, ["@annotation"]= {link="TSAnnotation"}, ["@attribute"]= {link="TSAttribute"}, ["@boolean"]= {link="TSBoolean"}, ["@character"]= {link="TSCharacter"}, ["@character.special"]= {link="TSCharacterSpecial"}, ["@comment"]= {link="TSComment"}, ["@conceal"]= {link="Grey"}, ["@conditional"]= {link="TSConditional"}, ["@constant"]= {link="TSConstant"}, ["@constant.builtin"]= {link="TSConstBuiltin"}, ["@constant.macro"]= {link="TSConstMacro"}, ["@constructor"]= {link="TSConstructor"}, ["@debug"]= {link="TSDebug"}, ["@define"]= {link="TSDefine"}, ["@error"]= {link="TSError"}, ["@exception"]= {link="TSException"}, ["@field"]= {link="TSField"}, ["@float"]= {link="TSFloat"}, ["@function"]= {link="TSFunction"}, ["@function.builtin"]= {link="TSFuncBuiltin"}, ["@function.call"]= {link="TSFunctionCall"}, ["@function.macro"]= {link="TSFuncMacro"}, ["@include"]= {link="TSInclude"}, ["@keyword"]= {link="TSKeyword"}, ["@keyword.function"]= {link="TSKeywordFunction"}, ["@keyword.operator"]= {link="TSKeywordOperator"}, ["@keyword.return"]= {link="TSKeywordReturn"}, ["@label"]= {link="TSLabel"}, ["@math"]= {link="TSMath"}, ["@method"]= {link="TSMethod"}, ["@method.call"]= {link="TSMethodCall"}, ["@namespace"]= {link="TSNamespace"}, ["@none"]= {link="TSNone"}, ["@number"]= {link="TSNumber"}, ["@operator"]= {link="TSOperator"}, ["@parameter"]= {link="TSParameter"}, ["@parameter.reference"]= {link="TSParameterReference"}, ["@preproc"]= {link="TSPreProc"}, ["@property"]= {link="TSProperty"}, ["@punctuation.bracket"]= {link="TSPunctBracket"}, ["@punctuation.delimiter"]= {link="TSPunctDelimiter"}, ["@punctuation.special"]= {link="TSPunctSpecial"}, ["@repeat"]= {link="TSRepeat"}, ["@storageclass"]= {link="TSStorageClass"}, ["@storageclass.lifetime"]= {link="TSStorageClassLifetime"}, ["@strike"]= {link="TSStrike"}, ["@string"]= {link="TSString"}, ["@string.escape"]= {link="TSStringEscape"}, ["@string.regex"]= {link="TSStringRegex"}, ["@string.special"]= {link="TSStringSpecial"}, ["@symbol"]= {link="TSSymbol"}, ["@tag"]= {link="TSTag"}, ["@tag.attribute"]= {link="TSTagAttribute"}, ["@tag.delimiter"]= {link="TSTagDelimiter"}, ["@text"]= {link="TSText"}, ["@text.danger"]= {link="TSDanger"}, ["@text.diff.add"]= {link="diffAdded"}, ["@text.diff.delete"]= {link="diffRemoved"}, ["@text.emphasis"]= {link="TSEmphasis"}, ["@text.environment"]= {link="TSEnvironment"}, ["@text.environment.name"]= {link="TSEnvironmentName"}, ["@text.literal"]= {link="TSLiteral"}, ["@text.math"]= {link="TSMath"}, ["@text.note"]= {link="TSNote"}, ["@text.reference"]= {link="TSTextReference"}, ["@text.strike"]= {link="TSStrike"}, ["@text.strong"]= {link="TSStrong"}, ["@text.title"]= {link="TSTitle"}, ["@text.todo"]= {link="TSTodo"}, ["@text.todo.checked"]= {link="Green"}, ["@text.todo.unchecked"]= {link="Ignore"}, ["@text.underline"]= {link="TSUnderline"}, ["@text.uri"]= {link="TSURI"}, ["@text.warning"]= {link="TSWarning"}, ["@todo"]= {link="TSTodo"}, ["@type"]= {link="TSType"}, ["@type.builtin"]= {link="TSTypeBuiltin"}, ["@type.definition"]= {link="TSTypeDefinition"}, ["@type.qualifier"]= {link="TSTypeQualifier"}, ["@uri"]= {link="TSURI"}, ["@variable"]= {link="TSVariable"}, ["@variable.builtin"]= {link="TSVariableBuiltin"}, ["@lsp.type.class"]= {link="TSType"}, ["@lsp.type.comment"]= {link="TSComment"}, ["@lsp.type.decorator"]= {link="TSFunction"}, ["@lsp.type.enum"]= {link="TSType"}, ["@lsp.type.enumMember"]= {link="TSProperty"}, ["@lsp.type.events"]= {link="TSLabel"}, ["@lsp.type.function"]= {link="TSFunction"}, ["@lsp.type.interface"]= {link="TSType"}, ["@lsp.type.keyword"]= {link="TSKeyword"}, ["@lsp.type.macro"]= {link="TSConstMacro"}, ["@lsp.type.method"]= {link="TSMethod"}, ["@lsp.type.modifier"]= {link="TSTypeQualifier"}, ["@lsp.type.namespace"]= {link="TSNamespace"}, ["@lsp.type.number"]= {link="TSNumber"}, ["@lsp.type.operator"]= {link="TSOperator"}, ["@lsp.type.parameter"]= {link="TSParameter"}, ["@lsp.type.property"]= {link="TSProperty"}, ["@lsp.type.regexp"]= {link="TSStringRegex"}, ["@lsp.type.string"]= {link="TSString"}, ["@lsp.type.struct"]= {link="TSType"}, ["@lsp.type.type"]= {link="TSType"}, ["@lsp.type.typeParameter"]= {link="TSTypeDefinition"}, ["@lsp.type.variable"]= {link="TSVariable"}, }end,latte=function(colors)return {IblIndent= {fg=colors.mantle },IblScope= {fg=colors.surface1 },LineNr= {fg=colors.surface1 }, }end, }, })vim.api.nvim_command("colorscheme catppuccin")end,} |
BetaWas this translation helpful?Give feedback.
All reactions
👍 10❤️ 7
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Roughly based on Everforest Hard by Sainnhehttps://github.com/sainnhe/everforestvim.opt.background = "dark":vim.opt.background = "light":Config:color_overrides= {mocha= {-- custom everforest dark hard portrosewater="#fed1cb",flamingo="#ff9185",pink="#d699b6",mauve="#cb7ec8",red="#e06062",maroon="#e67e80",peach="#e69875",yellow="#d3ad63",green="#b0cc76",teal="#6db57f",sky="#7fbbb3",sapphire="#60aaa0",blue="#59a6c3",lavender="#e0d3d4",text="#e8e1bf",subtext1="#e0d7c3",subtext0="#d3c6aa",overlay2="#9da9a0",overlay1="#859289",overlay0="#6d6649",surface2="#585c4a",surface1="#414b50",surface0="#374145",base="#1f2428",mantle="#161b1d",crust="#14181a", },latte= {-- custom everforest light hard portrosewater="#a43b35",flamingo="#da3537",pink="#d332a1",mauve="#aa3685",red="#ff3532",maroon="#de3631",peach="#f36c0b",yellow="#bd8800",green="#596600",teal="#287e5e",sky="#52b1c7",sapphire="#3fb4b8",blue="#317da7",lavender="#474155",text="#4d4742",subtext1="#5b5549",subtext0="#6d6655",overlay2="#786d5a",overlay1="#8c7c62",overlay0="#a18d66",surface2="#c9bea5",surface1="#d8d3ba",surface0="#e8e2c8",base="#ebe4c8",mantle="#e1dab5",crust="#bdc0a0", },} Font:
|
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 8
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Based on Adwaita colors, with some small tweaks. Some colors in syntax highlighting replaced with shades of gray (to tone down the theme a bit). I think it works quite well with a stock GNOME desktop, especially if you use Console (AKA kgx) as your terminal. Theme configrequire('catppuccin').setup {no_italic=true,color_overrides= {all= {rosewater='#f66151',flamingo='#c061cb',pink='#c061cb',mauve='#c061cb',red='#e01b24',maroon='#f66151',peach='#ffa348',yellow='#F5C211',green='#33d17a',teal='#54DBF6',sky='#62a0ea',sapphire='#62a0ea',blue='#62a0ea',lavender='#c061cb',text='#ffffff',subtext1='#deddda',subtext0='#c0bfbc',overlay2='#858585',overlay1='#737373',overlay0='#616161',surface2='#4f4f4f',surface1='#3e3e3e',surface0='#2e2e2e',base='#1E1E1E',mantle='#1A1A1A',crust='#101010'}},custom_highlights=function(colors)return {LineNr= {fg=colors.surface1},CursorLineNr= {fg=colors.overlay2},CursorLine= {bg='#252525'},ColorColumn= {bg='#252525'},Visual= {bg=colors.surface1},MsgArea= {fg=colors.subtext0},TabLine= {bg=colors.mantle},TabLineFill= {bg=colors.mantle},TabLineSel= {fg=colors.subtext0,bg=colors.base},GitSignsAdd= {fg='#467555'},GitSignsChange= {fg='#856f3a'},GitSignsDelete= {fg='#753b34'},TelescopeBorder= {fg=colors.subtext0},Constant= {fg=colors.blue},String= {fg=colors.subtext0},Character= {fg=colors.subtext0},Number= {fg=colors.blue},Boolean= {fg=colors.blue},Float= {fg=colors.blue},Identifier= {fg=colors.green},Function= {fg=colors.green},Statement= {fg=colors.green},Conditional= {fg=colors.green},Repeat= {fg=colors.green},Label= {fg=colors.green},Operator= {fg=colors.subtext0},Keyword= {fg=colors.green},Exception= {fg=colors.green},PreProc= {fg=colors.yellow},Include= {fg=colors.yellow},Define= {fg=colors.yellow},Macro= {fg=colors.yellow},PreCondit= {fg=colors.yellow},Type= {fg=colors.blue},StorageClass= {fg=colors.overlay2},Structure= {fg=colors.subtext0},Special= {fg=colors.overlay2},SpecialChar= {fg=colors.overlay2}}end}vim.cmd'colorscheme catppuccin' Gitsigns and lualine configrequire('gitsigns').setup {signcolumn=true,numhl=false,signs= {add= {text='+'},change= {text='~'},delete= {text='_'},topdelete= {text='‾'},changedelete= {text='~'},untracked= {text='┆'},}}localindent= {function()localstyle= (vim.bo.expandtaband'spaces')or'tabs'localsize= (vim.bo.expandtabandvim.bo.shiftwidth)orvim.bo.tabstopreturnstyle..':'..sizeend,cond=function()returnvim.bo.filetype~=''end,}require('lualine').setup {options= {icons_enabled=true,theme='auto',component_separators= {left='',right=''},section_separators= {left='',right=''},disabled_filetypes= {statusline= {},winbar= {},},ignore_focus= {},always_divide_middle=true,globalstatus=false,refresh= {statusline=1000,tabline=1000,winbar=1000,}},sections= {lualine_a= {{'mode',fmt=function(str)returnstr:sub(1,1)end }},lualine_b= {},lualine_c= {'branch', {'diagnostics',sources= {'coc'},sections= {'error','warn'},always_visible=false,update_in_insert=true}},lualine_x= {indent},lualine_y= {},lualine_z= {'location'}},inactive_sections= {lualine_a= {},lualine_b= {},lualine_c= {'filename'},lualine_x= {},lualine_y= {},lualine_z= {}},tabline= {},winbar= {},inactive_winbar= {},extensions= {}} Plugins: gitsigns, telescope, lualine, coc (coc-pyright, coc-rust-analyzer), smartcolumn, catppuccin. Font: Hack Nerd Font |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1❤️ 1
-
BetaWas this translation helpful?Give feedback.
All reactions
🎉 1
-
I've been looking this lately, too much watching tsoding videos. thanks |
BetaWas this translation helpful?Give feedback.
All reactions
-
your tmux also look cool, may I seek the config ? |
BetaWas this translation helpful?Give feedback.
All reactions
-
i used this themehttps://github.com/janoamaral/tokyo-night-tmux |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 45
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
@shanehead, I've edited my original post to include additional screenshots and configurations for the UI elements you see in my screenshots. I've also added a few more overrides since my first post. I useLazyVim as my Neovim distribution. In addition, the screenshots show off theMonaspace fonts (Neon for regular, Radon for italics), which have ligatures and texture healing. Lastly, I useWezTerm for my terminal. |
BetaWas this translation helpful?Give feedback.
All reactions
👍 4🎉 1
-
Does this theme have a name? :) |
BetaWas this translation helpful?Give feedback.
All reactions
-
No, I never really thought about a name because it just overrides my macchiato flavor in my catppuccin config. If I were to pick one, maybe I’d call it “neonsun”. Thoughts? As for a preset in your creator, please feel free to use. |
BetaWas this translation helpful?Give feedback.
All reactions
-
can you lead me through how you get the git grep titles: "Git Files", "Results", "Grep Preview" in colored boxes like in the screenshots |
BetaWas this translation helpful?Give feedback.
All reactions
-
to get the colored boxes use: require('catppuccin').setup({float= {solid=true,}}) |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 1
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
BetaWas this translation helpful?Give feedback.
All reactions
👍 8
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Click to expand! |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 2🚀 9
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
For a custom picker in CMP, I'm directly employing the following in the CMP Lua plugin: |
BetaWas this translation helpful?Give feedback.
All reactions
-
in the config you can also find the TSOperator feature (color of the following - := == === != etc) - currently it is a peach, but i prefer sapphire - but anyway it is up to you |
BetaWas this translation helpful?Give feedback.
All reactions
-
Awesome thanks! |
BetaWas this translation helpful?Give feedback.
All reactions
-
can you share config lualine.nvim file? |
BetaWas this translation helpful?Give feedback.
All reactions
-
actually, it's my custom statusline config -> i do not use lualine or any other plugins for this. |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1
-
BetaWas this translation helpful?Give feedback.
All reactions
👍 8❤️ 9
-
That name is awesome. |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 2
-
haha basically it said this is a coffee for cats :) |
BetaWas this translation helpful?Give feedback.
All reactions
-
Hiii, can I ask about the bar of your system? I mean, the window manager and the bar above. Thank youu |
BetaWas this translation helpful?Give feedback.
All reactions
-
It's just kwin on KDE Plasma. I never use a window manager, already comfortable with plasma workflow. |
BetaWas this translation helpful?Give feedback.
All reactions
-
Since nobody seems to be using Solarized-light theme, I have decided to make my own from latte. Terminal: iTerm2 with Sorarized-light theme return {"catppuccin/nvim",lazy=false,name="catppuccin",priority=1000,opts= {color_overrides= {latte= {base="#fbf6e4",mantle="#f5f0de",crust="#000000", }, }, },} |
BetaWas this translation helpful?Give feedback.
All reactions
-
Click mereturn { {"catppuccin/nvim",name="catppuccin",opts= {color_overrides= {latte= {rosewater="#fdf7e8",flamingo="#cb4b16",pink="#d33682",mauve="#6c71c4",red="#dc322f",maroon="#c03260",peach="#cb4b1f",yellow="#b58900",green="#859900",teal="#2aa198",sky="#2398d2",sapphire="#0077b3",blue="#268bd2",lavender="#7b88d3",text="#657b83",subtext1="#586e75",subtext0="#073642",overlay2="#002b36",overlay1="#839496",overlay0="#93a1a1",surface2="#eee8d5",surface1="#ebecef",surface0="#ccd0da",base="#fdf6e3",mantle="#f7f1dc",crust="#f5ecd7", }, },highlight_overrides= {latte=function(C)return {FlashLabel= {fg=C.base,bg=C.red,style= {"bold"} }, }end, }, }, }, {"LazyVim/LazyVim",opts= {colorscheme="catppuccin-latte", }, },} |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 4
-
It only has a similar effect on Kitty and Wezterm, where 'terminal' needs to be transparency |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
I really like this colourscheme, are you able to share your config please? |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Hey everyone, I createdCatbbrew to make creating flavors easy |
BetaWas this translation helpful?Give feedback.
All reactions
🎉 27❤️ 18🚀 16
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
@Rmano should be fixed. Might work for you tomorrow at the latest. |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
@vdawg-git Working beautifully!!! 🤩 Thanks |
BetaWas this translation helpful?Give feedback.
All reactions
-
@vdawg-git Maybe it's just me, but I'm having trouble changing the colors for anything. Do I click on the thing I want to change the color of, and then click on the color, or is it the other way around? Also, would it be possible to add Odin as one of the languages |
BetaWas this translation helpful?Give feedback.
All reactions
-
@gozes The colors on the sidebar are just an overview of the modifiable colors. |
BetaWas this translation helpful?Give feedback.
All reactions
-
If you want to add feedback/file an issue please do it here Im getting too many mails from this post :D (and idk if I can only enable notifications for comments on this thread) |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
I created another light and dark variant:🫐 BlueberryPeach 🍑 It includes neovim, tmux, zsh-syntax-highlighting, wezterm, and a few more. You can check theneovim port in thelinked repo. Note Instead of downloading the files, you could just copy the overrides from the lua files to your catppuccin setup. |
BetaWas this translation helpful?Give feedback.
All reactions
❤️ 1
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
I made a 1980s-hacker-meets-vaporwave-aesthetics theme by essentially brutalizing Here's the config: |
BetaWas this translation helpful?Give feedback.
All reactions
-
I increased the contrast of the dark mode of 🫐BlueberryPeach🍑. It wasn't enough for working extended periods of time. It's much more easy on the eyes now. |
BetaWas this translation helpful?Give feedback.
All reactions
-
Hello, here's my highlight_overrides. It mainly include the same main colors, but with a different background, and some tweeks in snacks.nivm and neotree. If you have proposition of small tweeks to the main colors to match better the blue, I'm listening! custom_highlights=function(colors)return {LineNr= {fg=colors.overlay0 },NeoTreeDotfile= {fg=colors.overlay0 },NeoTreeMessage= {fg=colors.surface2},SnacksPickerListCursorLine= {bg="#223547"},SnacksPickerSelected= {fg=colors.lavender }, }end |
BetaWas this translation helpful?Give feedback.
All reactions
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Does anyone happen to have a version that only colors the comments and errors? I want to experiment with minimal syntax highlights so I would like to turn most colors off and maybe leave only comments and errors highlighted and everything else either white or gray text without any other highlights I'm using matcha so I'm hoping to keep that as base |
BetaWas this translation helpful?Give feedback.






















































