goolord / alpha-nvim

a lua powered greeter like vim-startify / dashboard-nvim
MIT License
1.84k stars 109 forks source link

Remove ~ at the left size #88

Closed twoeightdev closed 2 years ago

twoeightdev commented 2 years ago

Hi just found this plugin. how can i remove the ~ symbol on the left side?

Issue-screen

Barbaross93 commented 2 years ago

@hoaxdream Did you find a way to hide the tildes?

twoeightdev commented 2 years ago

yea, all i did was this

    fillchars = {
        eob = ' ',                          -- Suppress ~ at end of buffer
        vert = '│',
        msgsep = '‾',
        diff = '╱', -- alternatives = ⣿ ░ ─
        fold = ' ',
        foldopen = '▾',
        foldsep = '│',
        foldclose = '▸'
    },