TerseTears / maani.nvim

Colorful dark colorscheme for Neovim
MIT License
11 stars 0 forks source link

Project Images and Screenshots #1

Open TerseTears opened 3 years ago

TerseTears commented 3 years ago

maani_logo scr1 scr2 scr3

TerseTears commented 2 years ago

Screenshot_20211103_163917 Screenshot_20211103_160811 Screenshot_20220312_150157

TerseTears commented 2 years ago

Screenshot_20220907_170417

TerseTears commented 2 years ago

Screenshot_20220907_173430

luisfrocha commented 1 year ago

Screenshot_20211103_163917

Unrelated, but how are you getting the content to show through the results dialog? I've looked at Telescope, NvimTree, and NeoTree and can't find anything to set their background to transparent AND show the buffer (it just shows through the entire window). Are you using something else?

TerseTears commented 1 year ago

@luisfrocha For Telescope, you can add the winblend option to a value other than 0 in the defaults part of the config, like this:

    config = function()
      require("telescope").setup({
    defaults = {
        layout_strategy = 'flex',
        winblend=30,
       ...
luisfrocha commented 1 year ago

@TerseTears Indeed, that worked. Thank you! If only I could also get it on NeoTree! 😄

luisfrocha commented 1 year ago

For anyone finding this later, I found the solution by setting the option winblend and pumblend and that sets the NeoTree window.

vim.opt.winblend = 30
vim.opt.pumblend = 30