123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- set nocompatible " be iMproved, required
- filetype off " required
- " set the runtime path to include Vundle and initialize
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
- " alternatively, pass a path where Vundle should install plugins
- "call vundle#begin('~/some/path/here')
- " let Vundle manage Vundle, required
- Plugin 'VundleVim/Vundle.vim'
- " The following are examples of different formats supported.
- " Keep Plugin commands between vundle#begin/end.
- " plugin on GitHub repo
- Plugin 'tpope/vim-fugitive'
- " plugin from http://vim-scripts.org/vim/scripts.html
- " Plugin 'L9'
- " Git plugin not hosted on GitHub
- " Plugin 'git://git.wincent.com/command-t.git'
- " git repos on your local machine (i.e. when working on your own plugin)
- " Plugin 'file:///home/gmarik/path/to/plugin'
- " The sparkup vim script is in a subdirectory of this repo called vim.
- " Pass the path to set the runtimepath properly.
- Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
- " Install L9 and avoid a Naming conflict if you've already installed a
- " different version somewhere else.
- " Plugin 'ascenator/L9', {'name': 'newL9'}
- Plugin 'flazz/vim-colorschemes'
- " All of your Plugins must be added before the following line
- 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
- set tabstop=4
- set shiftwidth=4
- set smarttab
- set expandtab "Ставим табы пробелами
- set softtabstop=4 "4 пробела в табе
- set autoindent "автоотступ
- "set smartindent
- set hlsearch
- set number
- set relativenumber
- let python_highlite_all=1
- set t_Co=256 "256 цветов в терминале
- syntax on "Подсветка синтаксиса
- set mousehide "Спрятать курсор мыши когда набираем текст
- set mouse=a "Включить поддержку мыши
- set termencoding=utf-8 "Кодировка терминала
- set novisualbell "Не мигать
- set t_vb= "Не пищать
- set backspace=indent,eol,start whichwrap+=<,>,[,] "Удобное поведение backspace
- set showtabline=1 "Вырубаем черточки на табах
- set wrap "Переносим на другую строчкуб разрываем строки
- set linebreak
- "Вырубаем .swp и ~ (резервные) файлы
- set nobackup
- set noswapfile
- set encoding=utf-8 "Кодировка файлов по умолчанию
- set fileencodings=utf8,cp1251
- set clipboard=unnamed
- set ruler
- set visualbell t_vb=
- colorscheme OceanicNext
|