summaryrefslogtreecommitdiff
path: root/init.vim
diff options
context:
space:
mode:
authorChrisatmachine <[email protected]>2018-08-20 21:08:24 -0400
committerChrisatmachine <[email protected]>2018-08-20 21:08:24 -0400
commitaa22dcbc102d9f52df76bb49bfd4426f28185756 (patch)
treeeca07d33fd280b37ffe3598b8e986b2030ff6962 /init.vim
parentf8e6b446388f721618c3300739b11ee21ace96a9 (diff)
fixed comma
Diffstat (limited to 'init.vim')
-rw-r--r--init.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.vim b/init.vim
index 4628bbf7..f8084055 100644
--- a/init.vim
+++ b/init.vim
@@ -198,8 +198,8 @@ let g:multi_cursor_quit_key = '<Esc>'
" ALE
let g:ale_linters = {
- \ 'cpp' : ['gcc']
- \ 'c' : [gcc]
+ \ 'cpp' : ['gcc'],
+ \ 'c' : ['gcc']
\}
let g:ale_cpp_gcc_options='-Wall -Wextra'
let g:ale_c_gcc_options='-Wall -Wextra'