feat: render spaces as .
This commit is contained in:
parent
1e8b8dc82e
commit
9cb5c91b17
4
init.lua
4
init.lua
|
|
@ -110,6 +110,10 @@ vim.o.mouse = 'a'
|
||||||
-- Don't show the mode, since it's already in the status line
|
-- Don't show the mode, since it's already in the status line
|
||||||
vim.o.showmode = false
|
vim.o.showmode = false
|
||||||
|
|
||||||
|
-- Renders spaces as "·"
|
||||||
|
vim.opt.list = true
|
||||||
|
vim.opt.listchars = vim.opt.listchars + 'space:·'
|
||||||
|
|
||||||
-- Sync clipboard between OS and Neovim.
|
-- Sync clipboard between OS and Neovim.
|
||||||
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
||||||
-- Remove this option if you want your OS clipboard to remain independent.
|
-- Remove this option if you want your OS clipboard to remain independent.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue