vxkernel - v0.7.0-rc0 : candidate release for the v0.7.0

*add*
> [.nvimrc]
  | add minimal ALE configuration for neovim
This commit is contained in:
Yann MAGNIN 2023-01-18 19:59:06 +01:00
parent d59a8c986f
commit 0ac038e1e2
1 changed files with 12 additions and 0 deletions

12
.nvimrc Normal file
View File

@ -0,0 +1,12 @@
" Setup GCC as linter
"let g:ale_linters = {'c' : ['sh-elf-vhex-gcc']}
" Patch include header
let g:ale_c_cc_options = '-std=c11 -Wall -I./kernel/include -I./boards/*/include'
" Enable completion
let g:ale_completion_enabled = 1
" Enable linter when enter is pressed
let g:ale_lint_on_enter = 1