ThePrimeagen / init.lua

3.23k stars 578 forks source link

What theme is this? #88

Open 9mm opened 1 year ago

9mm commented 1 year ago

It doesnt look like the normal rose-pine one? I like how it's more muted

image

cruzluna commented 11 months ago
use({
      'rose-pine/neovim',
      as = 'rose-pine',
      config = function()
          vim.cmd('colorscheme rose-pine')
      end
  })
Thinato commented 10 months ago

in addition to @cruzluna answer, in after/plugin/colors.lua he modifies the background transparency:

require('rose-pine').setup({
    disable_background = true
})

function ColorMyPencils(color) 
    color = color or "rose-pine"
    vim.cmd.colorscheme(color)

    vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
    vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })

end

ColorMyPencils()
asilvam133 commented 9 months ago

This is Tokyonight with transparent background. Right now he is using Rose Pine