all repos

dotfiles @ de9aa17

i use rach linux btw
1 files changed, 17 insertions(+), 11 deletions(-)
Update vimrc.server
Author: Smirnov Oleksandr 50584123+Smirnov-O@users.noreply.github.com
Committed by: GitHub noreply@github.com
Committed at: 2020-04-19 22:22:22 +0300
Parent: baed534
M vimrc.server
···
        1
        1
         call plug#begin('~/.vim/plugged')

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

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

      
        3
        3
         Plug 'airblade/vim-gitgutter'

      
        
        4
        +Plug 'tpope/vim-fugitive'

      
        4
        5
         Plug 'flazz/vim-colorschemes'

      
        5
        6
         Plug 'jiangmiao/auto-pairs'

      
        
        7
        +Plug 'kien/ctrlp.vim'

      
        6
        8
         call plug#end()

      
        7
        9
         

      
        8
        
        -

      
        9
        
        -syntax on

      
        10
        10
         set number

      
        11
        
        -set hidden

      
        12
        
        -set ignorecase

      
        
        11
        +syntax on

      
        
        12
        +set incsearch

      
        13
        13
         set hlsearch

      
        14
        
        -set incsearch

      
        
        14
        +set ignorecase

      
        15
        15
         set smartcase

      
        
        16
        +set nocompatible

      
        
        17
        +set ruler

      
        
        18
        +set mouse=a

      
        
        19
        +set hidden

      
        16
        20
         set autoindent

      
        17
        21
         set smartindent

      
        18
        
        -set mouse=a

      
        
        22
        +set history=150

      
        19
        23
         set termencoding=utf8

      
        20
        24
         set t_Co=256

      
        21
        25
         set background=dark

      
        22
        26
         colorscheme OceanicNext

      
        23
        
        -"set expandtab

      
        24
        
        -"set tabstop=4

      
        
        27
        +"Tab for python

      
        
        28
        +set tabstop=4 

      
        
        29
        +set shiftwidth=4

      
        
        30
        +set smarttab

      
        
        31
        +set expandtab

      
        25
        32
         

      
        26
        33
         "Maping chenge window

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

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

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

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

      
        31
        
        -

      
        32
        38
         "Maping Russian letters

      
        33
        39
         map ш i

      
        34
        40
         map м v

      ···
        39
        45
         map л k

      
        40
        46
         map д l

      
        41
        47
         

      
        42
        
        -"Delete excess space for python files

      
        
        48
        +"Delate excess spase for python files

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

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