Created
April 13, 2017 09:00
-
-
Save AARomanov1985/97ad3ab2ebeee0993b8d1c4b73bfc52b to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'tpope/vim-surround' | |
Plugin 'scrooloose/syntastic' | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" To ignore plugin indent changes, instead use: | |
"filetype plugin on | |
" | |
" Brief help | |
" :PluginList - lists configured plugins | |
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | |
" :PluginSearch foo - searches for foo; append `!` to refresh local cache | |
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal | |
" | |
" see :h vundle for more details or wiki for FAQ | |
" Put your non-Plugin stuff after this line | |
" colorscheme koehler | |
set nocompatible | |
set nowrap | |
syntax on | |
set showcmd | |
set ruler | |
set showmatch | |
set showtabline=2 | |
set laststatus=2 | |
set title | |
set confirm | |
set hidden | |
set statusline=%<%f%h%m%r%=format=%{&fileformat}\ file=%{&fileencoding}\ enc=%{&encoding}\ %b\ 0x%B\ %l,%c%V\ %P | |
set t_Co=256 | |
set background=dark | |
set number | |
set smartindent | |
set autoindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set pastetoggle= | |
set autoread | |
set keymap=russian-jcukenwin | |
set iminsert=0 | |
set splitbelow | |
set splitright | |
set foldmethod=manual | |
set foldmethod=syntax | |
set completeopt=longest,menuone | |
set hlsearch | |
set nohlsearch | |
set incsearch | |
set smartcase | |
set nowrapscan | |
set ignorecase | |
set imsearch=-1 | |
set imsearch=0 | |
set history=128 | |
set undolevels=1000 | |
set infercase | |
set encoding=utf-8 | |
set termencoding=utf-8 | |
set fileformat=unix | |
set ffs=unix,dos,mac | |
set nolist |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment