all repos

dotfiles @ 1d78a87fb2600dd622401cd66a268261b0eabd8f

i use rach linux btw
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
                
                -call plug#begin('~/.vim/plugged')

              
                2
                
                -Plug 'klen/python-mode', { 'for': 'python' }

              
                3
                
                -Plug 'airblade/vim-gitgutter'

              
                4
                
                -Plug 'tpope/vim-fugitive'

              
                5
                
                -Plug 'flazz/vim-colorschemes'

              
                6
                
                -Plug 'jiangmiao/auto-pairs'

              
                7
                
                -Plug 'kien/ctrlp.vim'

              
                8
                
                -call plug#end()

              
                9
                
                -

              
                10
                
                -set number

              
                11
                
                -syntax on

              
                12
                
                -set incsearch

              
                13
                
                -set hlsearch

              
                14
                
                -set ignorecase

              
                15
                
                -set smartcase

              
                16
                
                -set nocompatible

              
                17
                
                -set ruler

              
                18
                
                -set mouse=a

              
                19
                
                -set hidden

              
                20
                
                -set autoindent

              
                21
                
                -set smartindent

              
                22
                
                -set history=150

              
                23
                
                -set termencoding=utf8

              
                24
                
                -set t_Co=256

              
                25
                
                -set background=dark

              
                26
                
                -colorscheme OceanicNext

              
                27
                
                -"Tab for python

              
                28
                
                -set tabstop=4 

              
                29
                
                -set shiftwidth=4

              
                30
                
                -set smarttab

              
                31
                
                -set expandtab

              
                32
                
                -

              
                33
                
                -"Maping chenge window

              
                34
                
                -map <C-j> <C-W>j

              
                35
                
                -map <C-k> <C-W>k

              
                36
                
                -map <C-H> <C-W>h

              
                37
                
                -map <C-L> <C-W>l

              
                38
                
                -"Maping Russian letters

              
                39
                
                -map ш i

              
                40
                
                -map м v

              
                41
                
                -map ч x

              
                42
                
                -map в d

              
                43
                
                -map р h

              
                44
                
                -map о j

              
                45
                
                -map л k

              
                46
                
                -map д l

              
                47
                
                -

              
                48
                
                -"Delate excess spase for python files

              
                49
                
                -autocmd BufWritePre *.py normal m`:%s/\s\+$//e ``

              
                50
                
                -autocmd BufRead *.py set smartindent cinwords=if,elif,else,for,while,try,except,finally,def,class