commit: 58c74394ad7ba7567bfff06ee1cc2e30e5705ada
parent: 64ec49f7feb65bcf05059b4248da6fba4341830c
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Tue, 26 Jul 2016 18:33:38 +0200
vimrc: Update(NeoComplete and others)
Diffstat:
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/.gitconfig b/.gitconfig
@@ -4,9 +4,11 @@
signingkey = 4BBEBBAD
[push]
default = matching
+[commit]
+ gpgsign = true
[url "git://anongit.kde.org/"]
insteadOf = kde:
[url "ssh://git@git.kde.org/"]
pushInsteadOf = kde:
-[url "file:///media/gummy/home/haelwenn/sources/github.com/"]
- insteadOf = github:-
\ No newline at end of file
+[url "git://github.com/"]
+ insteadOf = github:
diff --git a/.vimrc b/.vimrc
@@ -1,3 +1,4 @@
+"set runtimepath=/seagate/sources/git/github.com/Shougo/vimproc,~/.vim,/usr/share/vim/vimfiles
let g:neocomplete#enable_at_startup = 1
filetype plugin on
@@ -23,6 +24,12 @@ set rnu
set statusline=%<%F\ [%{&ff}][%{&enc}%{((exists(\"+bomb\")\ &&\ &bomb)?\",\ BOM\":\"\")}]\ %=\ %-14.(%l,%c%V%)\ %P
set laststatus=2
-# app-vim/vim-latex
+" app-vim/vim-latex
set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
+
+if !exists('g:neocomplete#sources#omni#input_patterns')
+ let g:neocomplete#sources#omni#input_patterns = {}
+ let g:neocomplete#sources#omni#input_patterns.c = '[^.[:digit:] *\t]\%(\.\|->\)'
+ let g:neocomplete#sources#omni#input_patterns.cpp = '[^.[:digit:] *\t]\%(\.\|->\)\|\h\w*::'
+endif