c.lua (398B)
1 -- c ftplugin 2 3 -- Use tabs instead of spaces for c files 4 vim.bo.tabstop = 4 5 vim.bo.softtabstop = 0 6 vim.bo.shiftwidth = 4 7 vim.bo.expandtab = false 8 vim.bo.autoindent = true 9 vim.o.tabstop = 4 10 vim.o.softtabstop = 0 11 vim.o.shiftwidth = 4 12 vim.o.expandtab = false 13 vim.o.autoindent = true 14 vim.o.smarttab = true 15 16 -- Make the width of a line 79 characters (if you have more it is ugly!) 17 vim.bo.textwidth = 79