[nvim] EditorConfig, where have you been all my life
This commit is contained in:
parent
906d76d7c8
commit
9835bb967d
1 changed files with 10 additions and 0 deletions
|
@ -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
|
||||||
" ------------
|
" ------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue