[nvim] EditorConfig, where have you been all my life

This commit is contained in:
M1dgard 2018-08-06 20:16:50 +02:00
parent 906d76d7c8
commit 9835bb967d
Signed by untrusted user who does not match committer: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -231,6 +231,7 @@ call plug#begin('~/.config/nvim/plug')
"Plug 'dbmrq/vim-ditto' " highlight overused words "Plug 'dbmrq/vim-ditto' " highlight overused words
" Misc " Misc
Plug 'editorconfig/editorconfig-vim' " per-project modeline-like configuration
"Plug 'kassio/neoterm', { 'on': 'T' } " wrapper of some neovim's :terminal functions "Plug 'kassio/neoterm', { 'on': 'T' } " wrapper of some neovim's :terminal functions
"Plug 'tpope/vim-fugitive' " a Git wrapper "Plug 'tpope/vim-fugitive' " a Git wrapper
"Plug 'vim-scripts/TeTrIs.vim' " Tetris clone "Plug 'vim-scripts/TeTrIs.vim' " Tetris clone
@ -490,6 +491,15 @@ let g:ale_lint_delay=500
" Ditto {{{2 " Ditto {{{2
" ---------- " ----------
" EditorConfig {{{2
" -----------------
"
let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
let g:EditorConfig_max_line_indicator = 'line'
let g:EditorConfig_exec_path = '/usr/bin/editorconfig'
let g:EditorConfig_core_mode = 'external_command'
" Neoterm {{{2 " Neoterm {{{2
" ------------ " ------------