all repos

dotfiles @ 1d78a87

my dotfiles
1 files changed, 0 insertions(+), 50 deletions(-)
Delete vimrc.server
Author: Smirnov Aleksandr 50584123+Smirnov-O@users.noreply.github.com
Committed by: GitHub noreply@github.com
Committed at: 2020-05-15 20:28:14 +0300
Parent: 07b549e
D vimrc.server

@@ -1,50 +0,0 @@

-call plug#begin('~/.vim/plugged') -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() - -set number -syntax on -set incsearch -set hlsearch -set ignorecase -set smartcase -set nocompatible -set ruler -set mouse=a -set hidden -set autoindent -set smartindent -set history=150 -set termencoding=utf8 -set t_Co=256 -set background=dark -colorscheme OceanicNext -"Tab for python -set tabstop=4 -set shiftwidth=4 -set smarttab -set expandtab - -"Maping chenge window -map <C-j> <C-W>j -map <C-k> <C-W>k -map <C-H> <C-W>h -map <C-L> <C-W>l -"Maping Russian letters -map ш i -map м v -map ч x -map в d -map р h -map о j -map л k -map д l - -"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