aboutsummaryrefslogtreecommitdiffhomepage
path: root/.config/nvim/my/after/ftplugin/cpp.vim
blob: 13c03746d30765881ad7fc639bf3edf67d2312f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
scriptencoding utf-8


if exists('b:did_ftplugin_cpp_after')
    finish
endif



FtpluginSetLocal expandtab
FtpluginSetLocal shiftwidth=4
FtpluginSetLocal softtabstop=4
FtpluginSetLocal cinoptions=:0,l1,g0,N-s

let g:c_comment_strings = v:true
let g:c_space_errors = v:true



let b:did_ftplugin_cpp_after = 1