From de9aa17d54dfe712af467be8509f24f6348c1079 Mon Sep 17 00:00:00 2001 From: Smirnov Oleksandr <50584123+Smirnov-O@users.noreply.github.com> Date: Sun, 19 Apr 2020 22:22:22 +0300 Subject: [PATCH] Update vimrc.server --- vimrc.server | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/vimrc.server b/vimrc.server index df4256c..64bb016 100644 --- a/vimrc.server +++ b/vimrc.server @@ -1,34 +1,40 @@ call plug#begin('~/.vim/plugged') -Plug 'Vimjas/vim-python-pep8-indent', {'for': 'python'} +Plug 'klen/python-mode', { 'for': 'python' } Plug 'airblade/vim-gitgutter' +Plug 'tpope/vim-fugitive' Plug 'flazz/vim-colorschemes' Plug 'jiangmiao/auto-pairs' +Plug 'kien/ctrlp.vim' call plug#end() - -syntax on set number -set hidden -set ignorecase -set hlsearch +syntax on set incsearch +set hlsearch +set ignorecase set smartcase +set nocompatible +set ruler +set mouse=a +set hidden set autoindent set smartindent -set mouse=a +set history=150 set termencoding=utf8 set t_Co=256 set background=dark colorscheme OceanicNext -"set expandtab -"set tabstop=4 +"Tab for python +set tabstop=4 +set shiftwidth=4 +set smarttab +set expandtab "Maping chenge window map j map k map h map l - "Maping Russian letters map ш i map м v @@ -39,6 +45,6 @@ map о j map л k map д l -"Delete excess space for python files +"Delate excess spase for python files autocmd BufWritePre *.py normal m`:%s/\s\+$//e `` autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class