🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

options: configure listchars

robin 92612da8 ca355aa0

+8 -1
+8 -1
config/lua/ivy/config/options.lua
··· 138 138 vim.opt.spelloptions:append("noplainbuffer") 139 139 vim.o.spellsuggest = "double,4" 140 140 141 - -- indent blank line imporvments 142 141 vim.o.list = true 142 + vim.opt.listchars:append({ 143 + eol = " ", 144 + tab = "│ ", 145 + trail = "-", 146 + extends = "…", 147 + precedes = "…", 148 + nbsp = "␣", 149 + }) 143 150 144 151 vim.o.shell = os.getenv("SHELL") or "/bin/sh" 145 152