-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvimrc
197 lines (162 loc) · 6.03 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
" Use Vim settings, rather then Vi settings (much better!).
set nocompatible
if filereadable(expand("~/.vimrc.before.local"))
source ~/.vimrc.before.local
endif
if filereadable(expand("~/.vimrc.before"))
source ~/.vimrc.before
endif
if filereadable(expand("~/.vimrc.before.plugins"))
source ~/.vimrc.before.plugins
endif
" =============== Vundle Initialization ===============
if filereadable(expand("~/.vim/vimrc.plugins"))
source ~/.vim/vimrc.plugins
endif
if filereadable(expand("~/.vim/plugged/.installed"))
" ================ General Config ====================
set number "Line numbers are good
set backspace=indent,eol,start "Allow backspace in insert mode
set history=1000 "Store lots of :cmdline history
set showcmd "Show incomplete cmds down the bottom
set showmode "Show current mode down the bottom
set gcr=a:blinkon0 "Disable cursor blink
set novisualbell "No sounds
set autoread "Reload files changed outside vim
" This makes vim act like all other editors, buffers can
" exist in the background without being in a window.
" http://items.sjbach.com/319/configuring-vim-right
set hidden
"turn on syntax highlighting
syntax on
" Change leader to a comma because the backslash is too far away
" That means all \x commands turn into ,x
" The mapleader has to be set before vundle starts loading all
" the plugins.
if !exists("g:mapleader")
let mapleader=","
let g:mapleader=","
endif
if !exists("g:maplocalleader")
let maplocalleader = '\'
let g:maplocalleader = '\'
endif
" ================ Turn Off Swap Files ==============
set noswapfile
set nobackup
set nowb
" ================ Indentation ======================
set autoindent
set smartindent
set smarttab
set shiftwidth=2
set softtabstop=2
set tabstop=2
set expandtab
filetype plugin on
filetype indent on
" Display tabs and trailing spaces visually
set nolist
set listchars=trail:·,precedes:«,extends:»,eol:¶,tab:▸\
set nowrap "Don't wrap lines
" ================ Folds ============================
set foldmethod=indent "fold based on indent
set foldnestmax=10 "deepest fold is 3 levels
set nofoldenable "dont fold by default
set foldlevelstart=10
set foldlevel=10
" ================ Completion =======================
set wildmode=list:longest,full
set wildmenu "enable ctrl-n and ctrl-p to scroll thru matches
set wildignore=*.o,*.obj,*~ "stuff to ignore when tab completing
set wildignore+=*vim/tmp/backups*
set wildignore+=*sass-cache*
set wildignore+=*DS_Store*
set wildignore+=vendor/rails/**
set wildignore+=vendor/cache/**
set wildignore+=*.gem
set wildignore+=tags
set wildignore+=log/**
set wildignore+=tmp/**
set wildignore+=*.png,*.jpg,*.gif
set wildignore+=*.sw?
set wildignore+=*.bak,*.?~,*.??~,*.???~,*.~
set wildignore+=*.luac
set wildignore+=*.jar
set wildignore+=*.pyc
set wildignore+=*.stats
" ================ Scrolling ========================
set scrolloff=8 "Start scrolling when we're 8 lines away from margins
set sidescrolloff=15
set sidescroll=1
" ================ Misc options =====================
set expandtab
set mouse=a
set title
set ignorecase " игнорировать регистр при поиске
set smartcase
set hlsearch " подсвечивать поиск
set incsearch " использовать инкрементальный поиск
set autoindent " indents if previous line was indented
set smartindent " smart indenting
set linebreak " перенос по словам, а не по буквам
set dy=lastline
set laststatus=2
set encoding=utf-8 " set charset translation encoding
set termencoding=utf-8 " set terminal encoding
set fileencoding=utf-8 " set save encoding
set fileencodings=utf8,koi8r,cp1251,cp866 " список предполагаемых кодировок, в порядке предпочтения
set viminfo='50,<1000,s100,:50,n$HOME/.vim/tmp/viminfo
set foldcolumn=3
set t_Co=256
set t_vb=
set pastetoggle=<F3>
set noautochdir
set tags+=~/.vimtags
set noshowmode
set confirm
set gdefault " Add the g flag to search/replace by default
set binary
set noeol " Don’t add empty newlines at the end of files
set cursorcolumn " Highlight current column
set cursorline " Highlight current line
set cursorcolumn " Highlight current column
set noerrorbells " Disable error bells
set shortmess=atI " Don’t show the intro message when starting Vim
set ttimeoutlen=50
set ssop-=options
set colorcolumn=120
if exists('g:tab_mode')
set switchbuf=usetab,newtab
else
set switchbuf=useopen
endif
set ttyfast " assume fast terminal connection
set completeopt-=preview
let &showbreak='↪ '
if has('unnamedplus')
set clipboard=unnamed,unnamedplus
else
set clipboard=unnamed
endif
" Use relative line numbers
if exists("g:apperances_numbers")
set relativenumber
au BufReadPost * set relativenumber
endif
" =================== GUI Settings ========================
" Disable the scrollbars (NERDTree)
set guioptions-=r
set guioptions-=L
" Disable the macvim toolbar
set guioptions-=T
" Disable menu bar
set guioptions-=m
" ================ Custom Settings ========================
for fpath in split(globpath('~/.vim/settings', '*.vim'), '\n')
exe 'source' fpath
endfor
if filereadable(expand("~/.vimrc.local"))
so ~/.vimrc.local
endif
endif