Compare commits
3 Commits
799cbe35c1
...
2abea87dfe
| Author | SHA1 | Date | |
|---|---|---|---|
| 2abea87dfe | |||
| 7e0b49ba31 | |||
| f4e2308d06 |
7
vim/ftplugin/helm.vim
Normal file
7
vim/ftplugin/helm.vim
Normal 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
|
||||||
10
vim/vimrc
10
vim/vimrc
@@ -5,6 +5,8 @@ syntax enable
|
|||||||
set term=xterm-256color
|
set term=xterm-256color
|
||||||
colorscheme atom-dark-256
|
colorscheme atom-dark-256
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
|
set backspace=indent,eol,start
|
||||||
|
filetype plugin indent on
|
||||||
|
|
||||||
" Changing <leader> key from \ to <space>
|
" Changing <leader> key from \ to <space>
|
||||||
nnoremap <SPACE> <Nop>
|
nnoremap <SPACE> <Nop>
|
||||||
@@ -13,6 +15,11 @@ let mapleader=" "
|
|||||||
" Folding params
|
" Folding params
|
||||||
set foldlevelstart=20
|
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 не стоит
|
if empty(glob('~/.vim/autoload/plug.vim')) "Если vim-plug не стоит
|
||||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||||
@@ -27,6 +34,7 @@ call plug#begin('~/.vim/bundle') "Начать искать плагины в э
|
|||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
Plug 'jreybert/vimagit'
|
Plug 'jreybert/vimagit'
|
||||||
Plug 'preservim/nerdtree'
|
Plug 'preservim/nerdtree'
|
||||||
|
Plug 'towolf/vim-helm'
|
||||||
call plug#end() "Перестать это делать
|
call plug#end() "Перестать это делать
|
||||||
|
|
||||||
"
|
"
|
||||||
@@ -43,7 +51,7 @@ let g:Powerline_symbols='unicode' " Unicode support
|
|||||||
" Gitgutter plugin config
|
" Gitgutter plugin config
|
||||||
"
|
"
|
||||||
let g:gitgutter_override_sign_column_highlight = 1
|
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
|
set updatetime=100
|
||||||
|
|
||||||
"
|
"
|
||||||
|
|||||||
Reference in New Issue
Block a user