summaryrefslogtreecommitdiff
path: root/_vimrc_local.vim
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2018-07-12 11:51:00 +0300
committerOxore <oxore@protonmail.com>2018-07-12 11:51:00 +0300
commitd3fddd7d28f314a6738f2a0ba4d9f58024b01984 (patch)
tree7345455bdc6f051289ffa9854fcad2001a55a223 /_vimrc_local.vim
parent9a9711945c2add826e5887aabe2330bee9042b4b (diff)
Introduce testing with munit, refactor
Split unicode routines from text. Testing: add munit submodule, move translation units with main functions to separate folder, make corresponding changes in Makefile. Make simple test for unicode handling routine. Remove _vimrc_local. test.c: optimize includes. Add test run to .travis.yml.
Diffstat (limited to '_vimrc_local.vim')
-rw-r--r--_vimrc_local.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/_vimrc_local.vim b/_vimrc_local.vim
deleted file mode 100644
index 78f02f7..0000000
--- a/_vimrc_local.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-if (&ft=='c' || &ft=='h' || &ft=='cpp')
- setlocal shiftwidth=4
- setlocal tabstop=4
- setlocal expandtab
-endif
-
-" Neomake c include
-let g:neomake_c_enabled_makers = ['gcc']
-let g:neomake_c_gcc_maker = {'args': ['-fsyntax-only', '-Wall', '-Wextra', '-I../include/', '-I./include/']}