aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/nvim/after/ftplugin/cpp.lua
blob: 5ace4e2e0dd01e623eef2532461b0889f763900b (plain)
1
2
3
4
5
6
vimrc.after_ftplugin('cpp', function(conf)
   conf.indent(conf.SPACE, 4)
   vim.bo.cinoptions = ':0,l1,g0,N-s'
   vim.g.c_comment_strings = true
   vim.g.c_space_errors = true
end)