Compare commits

...

3 Commits

Author SHA1 Message Date
2abea87dfe quickfix for backspace to work 2022-08-13 13:32:13 +03:00
7e0b49ba31 vim-helm plugin added 2022-08-13 13:31:50 +03:00
f4e2308d06 Vim vertical split hide 2022-08-13 13:28:51 +03:00
2 changed files with 16 additions and 1 deletions

7
vim/ftplugin/helm.vim Normal file
View File

@@ -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

View File

@@ -5,6 +5,8 @@ syntax enable
set term=xterm-256color
colorscheme atom-dark-256
set number relativenumber
set backspace=indent,eol,start
filetype plugin indent on
" Changing <leader> key from \ to <space>
nnoremap <SPACE> <Nop>
@@ -13,6 +15,11 @@ let mapleader=" "
" Folding params
set foldlevelstart=20
" Hiding unnecessary vertical split lines
set fillchars+=vert:\ "White space at the end
highlight VertSplit ctermbg=bg ctermfg=bg
highlight VertSplit guibg=bg guifg=bg
if empty(glob('~/.vim/autoload/plug.vim')) "Если vim-plug не стоит
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
@@ -27,6 +34,7 @@ call plug#begin('~/.vim/bundle') "Начать искать плагины в э
Plug 'airblade/vim-gitgutter'
Plug 'jreybert/vimagit'
Plug 'preservim/nerdtree'
Plug 'towolf/vim-helm'
call plug#end() "Перестать это делать
"
@@ -43,7 +51,7 @@ let g:Powerline_symbols='unicode' " Unicode support
" Gitgutter plugin config
"
let g:gitgutter_override_sign_column_highlight = 1
highlight SignColumn ctermbg=none
highlight SignColumn term=underline cterm=NONE ctermbg=235 ctermfg=66 gui=NONE guibg=#232526 guifg=#465457
set updatetime=100
"