-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
40 lines (33 loc) · 855 Bytes
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
syntax on
set visualbell
set shiftwidth=2
set tabstop=2
set number
set expandtab
set background=dark
set t_Co=256
set hlsearch
set incsearch
set encoding=utf-8
set fileencoding=utf-8
set ffs=unix,dos,mac
set nobackup
set ignorecase
" Remove `replace` at the start.
" If there is no error, then comment out the parameter.
set t_u7=
map <silent> <C-t> :NERDTree<CR>
" =0 - показывает только обычные файлы.
" =1 - показывает обычные + скрытые файлы.
" =2 - показывает только скрытые файлы.
let NERDTreeShowHidden=0
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'tpope/vim-surround'
Plugin 'airblade/vim-gitgutter'
Plugin 'scrooloose/nerdtree.git'
Plugin 'VundleVim/Vundle.vim'
call vundle#end()
filetype plugin indent on