feat(vim): Remove tilde indicator for EOF

This commit is contained in:
Tanguy Herbron 2023-04-08 01:32:18 +02:00
parent 5c1b707afe
commit f77ce5f2eb

View File

@ -72,6 +72,9 @@ vim.g.loaded_node_provider = 0
-- Disable error bell
vim.opt.errorbells = false
-- Hide emptyline ~
vim.opt.fillchars = { eob = " " }
--- Tab configuration ---
-- Show tabs at 4 spaces
vim.opt.tabstop = 4