Merge pull request #5 from sashaaKr/render_spaces
feat: render spaces as .
This commit is contained in:
commit
79c3b120a5
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
|
||||
vim.o.showmode = false
|
||||
|
||||
-- Renders spaces as "·"
|
||||
vim.opt.list = true
|
||||
vim.opt.listchars = vim.opt.listchars + 'space:·'
|
||||
|
||||
-- Sync clipboard between OS and Neovim.
|
||||
-- Schedule the setting after `UiEnter` because it can increase startup-time.
|
||||
-- Remove this option if you want your OS clipboard to remain independent.
|
||||
|
|
|
|||
Loading…
Reference in New Issue