all repos

dotfiles @ 74619f2

my dotfiles
1 files changed, 54 insertions(+), 43 deletions(-)
Update vimrc
Author: Smirnov Aleksandr 50584123+Smirnov-O@users.noreply.github.com
Committed by: GitHub noreply@github.com
Committed at: 2020-05-12 22:41:46 +0300
Parent: 1052e9f
M vimrc

@@ -1,59 +1,70 @@

call plug#begin('~/.vim/plugged') -Plug 'klen/python-mode', { 'for': 'python' } -Plug 'vim-ruby/vim-ruby', { 'for': 'ruby' } -Plug 'fatih/vim-go', { 'for': 'go' } -Plug 'iamcco/markdown-preview.vim', { 'for': 'markdown' } -Plug 'airblade/vim-gitgutter' -Plug 'tpope/vim-fugitive' Plug 'jiangmiao/auto-pairs' -Plug 'flazz/vim-colorschemes' -Plug 'kien/ctrlp.vim' +Plug 'flazz/vim-colorschemes' " ColorChemes pack +Plug 'airblade/vim-gitgutter' " Git indecator +Plug 'kien/ctrlp.vim' " Search file +Plug 'ap/vim-css-color', {'for': 'css'} " CSS color 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 guifont=DroidSansMono\ Nerd\ Font\ 11 -set t_Co=256 +set number " Number line +syntax on " Support syntax +set mouse=a " Mousr support +set ruler " Cursor position +set hidden " hidden buffers +set smartindent " hidden buffers +set t_Co=256 " Enable 265 colors +set encoding=utf-8 " Use utf-8 encoding + +set cursorline " The line with the cursor will be highlighted +set wrap " Line wrapping +set nobackup " Disable backup files +set noswapfile " Disable *.swp files +set history=1000 " History size 1000 edits +set autoread " Auto reade file for edit + +" Tab +set tabstop=4 " Tab size 4 +set shiftwidth=4 " Tab size 4 +set expandtab " Tab consist of space +set smarttab " Tab consist of space + +" Search +set incsearch " Highlighted +set ignorecase " Highlighted +set smartcase " Smart Rigger + +" ColoerCheme set background=dark -colorscheme OceanicNext -"Tab for python -set tabstop=4 -set shiftwidth=4 -set smarttab -set expandtab +colorscheme gruvbox +" Color cheme list +" Dark: adventurs, Atelier_DuneLight, colorsbox-material, colorsbox-faff, OceanocNext, gruvbox, Monokai, vmaterial +" Light: newspaper, newspaper, wikipedia, Atelier_CaveLight, mac_classic +" Outher: off -"Maping chenge window +"""""""""" +" MAPING " +"""""""""" +let mapleader=',' " Leader key + +" Smart way to move between windows 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 <C-h> <C-W>h +map <C-l> <C-W>l + +" Tabs +map <leader>tn :tabnew<cr> +map <leader>to :tabonly<cr> +map <leader>tc :tabclose<cr> +map <leader>tm :tabmove + +" Russian letters map ш i map м v map ч x map в d map р h +map п g map о j map л k map д l -"MarkDownPreview -nmap <silent> <F8> <Plug>MarkdownPreview -imap <silent> <F8> <Plug>MarkdownPreview -nmap <silent> <F9> <Plug>StopMarkdownPreview -imap <silent> <F9> <Plug>StopMarkdownPreview - -"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