nvim-lua / kickstart.nvim

A launch point for your personal nvim configuration
MIT License
18.86k stars 21.57k forks source link

Align color scheme with kitty #914

Closed kevaldonga closed 4 months ago

kevaldonga commented 5 months ago

Is there way to align neovim color scheme with kitty terminal colors. I want to set neovim theme whatever kitty theme is, as it is not picking up colors from kitty and it is showing boundry between terminal and neovim.

dam9000 commented 5 months ago

Not sure which colors you mean, but if you just want to use the same background color in nvim as is defined by the terminal, you can set the transparent option like this:

diff --git a/init.lua b/init.lua
index 88658ef..02779bc 100644
--- a/init.lua
+++ b/init.lua
@@ -780,6 +780,7 @@ require('lazy').setup({
     -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
     'folke/tokyonight.nvim',
     priority = 1000, -- Make sure to load this before all the other start plugins.
+    opts = { transparent = true },
     init = function()
       -- Load the colorscheme here.
       -- Like many other themes, this one has different styles, and you could load

For more details see: https://github.com/folke/tokyonight.nvim

Or you can try to find a different colorscheme that better matches whatever style you prefer.

kevaldonga commented 4 months ago

yes I have set up background color to transparent. but what I am saying is I don't want tokyo night or any other theme in neovim I want it to pick up colors from kitty terminal. it that possible ?

dam9000 commented 4 months ago

You could try using one of the colorschemes that support the terminal defined 16 colors, for example habamax and then force that mode. Try this:

:set notermguicolors
:set t_Co=16
:colorscheme habamax

This should force the colorscheme to use the cterm instead of the gui defined colors. If you do that with tokyonight it will just go to a black-and-white mode, but habamax and other builtin schemes do support the 16 color modes. To get a list of all builtin colorschemes check: /usr/share/nvim/runtime/colors

jglueckstein commented 4 months ago

Maybe this solution would work for you.

feoh commented 4 months ago

In any case, this isn't a kickstart problem. You'd still get a (default) theme from neovim without kickstart, so I'm closing this. Hope folks suggestions have helped.