From 7e0b49ba317b9b295f6639b1aafcb2852cab0c57 Mon Sep 17 00:00:00 2001 From: Dmitry Chumak Date: Sat, 13 Aug 2022 13:29:11 +0300 Subject: [PATCH] vim-helm plugin added --- vim/ftplugin/helm.vim | 7 +++++++ vim/vimrc | 1 + 2 files changed, 8 insertions(+) create mode 100644 vim/ftplugin/helm.vim diff --git a/vim/ftplugin/helm.vim b/vim/ftplugin/helm.vim new file mode 100644 index 0000000..a324e96 --- /dev/null +++ b/vim/ftplugin/helm.vim @@ -0,0 +1,7 @@ +filetype plugin indent on +" show existing tab with 2 spaces width +set tabstop=2 +" when indenting with '>', use 2 spaces width +set shiftwidth=2 +" On pressing tab, insert 2 spaces +set expandtab diff --git a/vim/vimrc b/vim/vimrc index 6733d28..60e176d 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -32,6 +32,7 @@ call plug#begin('~/.vim/bundle') "Начать искать плагины в э Plug 'airblade/vim-gitgutter' Plug 'jreybert/vimagit' Plug 'preservim/nerdtree' + Plug 'towolf/vim-helm' call plug#end() "Перестать это делать "