Basis for vim configuration

Hyped for neovim 0.5!
This commit is contained in:
Geoffrey Frogeye 2021-07-02 22:57:07 +02:00
parent 256a08f1a7
commit dd0e5a2189
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
12 changed files with 69 additions and 12 deletions

View file

@ -0,0 +1,9 @@
{{ add_source('dense-analysis/ale') }}
nmap <F3> :ALEFix<CR>
let g:ale_sign_error = '×'
let g:ale_sign_warning = '!'
let g:ale_completion_enabled = 1
let g:ale_fixers = ['autopep8', 'shfmt', 'uncrustify', 'remove_trailing_lines', 'trim_whitespace', 'phpcbf']
let g:ale_php_phpcs_standard = '/srv/http/machines/ruleset.xml'

View file

@ -0,0 +1 @@
{{ add_source('Shougo/deoplete.nvim', {'do': ':UpdateRemotePlugins'}) }}