nvim/after/ftplugin/cpp.lua
2024-08-07 20:30:59 -05:00

6 lines
228 B
Lua

vim.opt_local.expandtab = true
vim.opt_local.smartindent = true
vim.opt_local.tabstop = 2
vim.opt_local.shiftwidth = 2
vim.opt_local.formatoptions:append { c = true, r = true, o = true, q = true }
vim.bo.commentstring = '// %s'