Browse Source

LaTeX Ale parameters

master
n0m1s 7 years ago
parent
commit
afdc7e374c
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      config/plugins.vimrc

+ 5
- 0
config/plugins.vimrc View File

@ -40,6 +40,7 @@ let g:ale_echo_msg_error_str = 'Error'
let g:ale_echo_msg_warning_str = 'Warning'
let g:ale_echo_msg_format = '[%linter%] %severity%: %s'
" C++
let g:ale_cpp_clang_includes = [
\ getcwd(),
\ getcwd().'/third-party'
@ -52,11 +53,15 @@ if len(g:ale_cpp_clang_includes)
let g:ale_cpp_clang_options = g:ale_cpp_clang_options . ' -I' . join(g:ale_cpp_clang_includes, " -I")
endif
" C#
let g:ale_cs_mcsc_source = getcwd()
let g:ale_cs_mcsc_assemblies =
\ split(system("find '/opt/Unity/Editor/Data/' -type f -name 'Unity*.dll'"),'\n') "+
"\ split(system("find " . getcwd() . " -type f -name '*.dll'"))
" LaTeX
let g:ale_tex_chktex_options = '-n8 -I'
" startify
let g:startify_fortune_use_unicode = 1
let g:startify_session_persistence = 1


Loading…
Cancel
Save