oldworld.nvim icon indicating copy to clipboard operation
oldworld.nvim copied to clipboard

Transparent background

Open Unkn0wnN4m3 opened this issue 1 year ago • 2 comments

It would be nice to add the possibility of making the background transparent

Unkn0wnN4m3 avatar Jul 21 '24 01:07 Unkn0wnN4m3

Maybe vim.cmd(‘hi Normal guibg=NONE ctermbg=NONE’) but implemented correctly.

Unkn0wnN4m3 avatar Jul 21 '24 20:07 Unkn0wnN4m3

Something like this would be better than vim.cmd

 -- lua/config/oldworld.lua
  require('oldworld').setup({
    integrations = {
      navic = true,
      alpha = false,
      rainbow_delimiters = false,
    },
    highlight_overrides = {
      Normal = { bg = 'NONE' },
      NormalNC = { bg = 'NONE' },
      CursorLine = { bg = '#222128' },
    },
  })
  vim.cmd.colorscheme 'oldworld'

shubham-cpp avatar Aug 19 '24 04:08 shubham-cpp