From c0acfac53bca26bb9c396462bbc23d8359d42952 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 1 Sep 2016 23:24:45 -0700 Subject: [PATCH] more C stuff --- home/-shrc | 1 + vim/after/syntax/c.vim | 2 ++ 2 files changed, 3 insertions(+) diff --git a/home/-shrc b/home/-shrc index 94b4086..9d3e3fd 100644 --- a/home/-shrc +++ b/home/-shrc @@ -88,6 +88,7 @@ whoa=( -Wall -Wextra -Werror=implicit-function-declaration + -Werror=uninitialized -Winline -Wshadow diff --git a/vim/after/syntax/c.vim b/vim/after/syntax/c.vim index 2effd5b..77b7292 100644 --- a/vim/after/syntax/c.vim +++ b/vim/after/syntax/c.vim @@ -1,3 +1,5 @@ syn keyword cType uchar ushort uint ulong syn keyword cType u8 u16 u32 u64 syn keyword cType s8 s16 s32 s64 +syn keyword cType i8 i16 i32 i64 +syn keyword cType f32 f64