mod(nvim): use hard tabs by default

This commit is contained in:
Léana 江 2023-06-24 23:42:06 +02:00 committed by Léana 江
parent c2cfb0781f
commit c9cfd2248f
2 changed files with 4 additions and 6 deletions

View file

@ -7,9 +7,7 @@ vim.opt.signcolumn = "yes"
vim.opt.filetype = "on"
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.expandtab = false
-- wrapping makes the editor EXTREMELY slow, turn it off by default
vim.opt.wrap = false