dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 393949bc60317ef414361d552c79967a4b6854f5
parent 4040ff63496c74a0d3c4793041866d493b89a620
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Thu, 24 Aug 2017 23:01:38 -0700

vim: Indent C tabs to 8

Diffstat:
vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vimrc b/vimrc @@ -231,8 +231,8 @@ function! C_Syntax() syntax match _Semicolon "[;]" hi link _Operator Operator hi _Semicolon ctermfg=red - set sw=4 - set ts=4 + set sw=8 + set ts=8 set noexpandtab endfunction autocmd! BufRead,BufNewFile,BufEnter *.{c,cpp,h,hpp,} call C_Syntax()