Show trailing spaces
This commit is contained in:
parent
3d51d8fc3f
commit
d706e0cdf1
|
@ -129,6 +129,7 @@ local function set_vim_o()
|
||||||
hidden = false,
|
hidden = false,
|
||||||
inccommand = "split",
|
inccommand = "split",
|
||||||
linebreak = true,
|
linebreak = true,
|
||||||
|
list = true,
|
||||||
mouse = "n",
|
mouse = "n",
|
||||||
number = true,
|
number = true,
|
||||||
pumblend = 10,
|
pumblend = 10,
|
||||||
|
@ -159,6 +160,9 @@ local function set_vim_o()
|
||||||
|
|
||||||
vim.opt.backupdir:remove "." -- keep backups out of the current directory
|
vim.opt.backupdir:remove "." -- keep backups out of the current directory
|
||||||
vim.opt.clipboard:append "unnamedplus"
|
vim.opt.clipboard:append "unnamedplus"
|
||||||
|
vim.opt.listchars:append {
|
||||||
|
trail = "·",
|
||||||
|
}
|
||||||
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
vim.opt.completeopt = { "menu", "menuone", "noselect" }
|
||||||
vim.opt.laststatus = 3
|
vim.opt.laststatus = 3
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue