all repos

dotfiles @ 145068ac44b1ba9ee0cfa131ca09c11724a52e48

i use rach linux btw
1 files changed, 44 insertions(+), 0 deletions(-)
Create vimrc.server

Vim config for server
Author: Smirnov Oleksandr 50584123+Smirnov-O@users.noreply.github.com
Committed by: GitHub noreply@github.com
Committed at: 2020-04-17 00:39:36 +0300
Parent: f601a13
A vimrc.server
···
                
                1
                +call plug#begin('~/.vim/plugged')

              
                
                2
                +Plug 'Vimjas/vim-python-pep8-indent', {'for': 'python'}

              
                
                3
                +Plug 'airblade/vim-gitgutter'

              
                
                4
                +Plug 'flazz/vim-colorschemes'

              
                
                5
                +Plug 'jiangmiao/auto-pairs'

              
                
                6
                +call plug#end()

              
                
                7
                +

              
                
                8
                +

              
                
                9
                +syntax on

              
                
                10
                +set number

              
                
                11
                +set hidden

              
                
                12
                +set ignorecase

              
                
                13
                +set hlsearch

              
                
                14
                +set incsearch

              
                
                15
                +set smartcase

              
                
                16
                +set autoindent

              
                
                17
                +set smartindent

              
                
                18
                +set mouse=a

              
                
                19
                +set termencoding=utf8

              
                
                20
                +set t_Co=256

              
                
                21
                +set background=dark

              
                
                22
                +colorscheme OceanicNext

              
                
                23
                +"set expandtab

              
                
                24
                +"set tabstop=4

              
                
                25
                +

              
                
                26
                +"Maping chenge window

              
                
                27
                +map <C-j> <C-W>j

              
                
                28
                +map <C-k> <C-W>k

              
                
                29
                +map <C-H> <C-W>h

              
                
                30
                +map <C-L> <C-W>l

              
                
                31
                +

              
                
                32
                +"Maping Russian letters

              
                
                33
                +map ш i

              
                
                34
                +map м v

              
                
                35
                +map ч x

              
                
                36
                +map в d

              
                
                37
                +map р h

              
                
                38
                +map о j

              
                
                39
                +map л k

              
                
                40
                +map д l

              
                
                41
                +

              
                
                42
                +"Delete excess space for python files

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

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