diff --git a/vimrc b/vimrc index 7813c07..2d985f8 100644 --- a/vimrc +++ b/vimrc @@ -133,6 +133,11 @@ Plug 'xuhdev/vim-latex-live-preview' " Python " Plug 'python-mode/python-mode', { 'for': 'python', 'branch': 'develop' } +" https://github.com/itspriddle/vim-shellcheck " +" Shell " +Plug 'itspriddle/vim-shellcheck' + + " Перечисление плагинов заканчивается здесь " call plug#end() @@ -143,6 +148,9 @@ call plug#end() syntax on filetype plugin indent on +" Выбор движка для регулярных выражений +autocmd FileType ruby,tex set regexpengine=1 + " Отключен режим совместимости " set nocompatible @@ -385,6 +393,7 @@ let g:lightline = { \ 'modified': '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}', \ 'character': '%04B', \ 'separator': '|', + \ 'lineinfo': '%3l:%-2v', \ }, \ 'component_function': { \ 'mode': 'LightlineMode',