Просмотр исходного кода

Vim bundles are in ~/t/vim and I use solarized.

(And I'm stunned :)
Lucas Stadler лет назад: 14
Родитель
Сommit
506e08f900
1 измененных файлов с 7 добавлено и 3 удалено
  1. 7 3
      .vimrc

+ 7 - 3
.vimrc

16
" Don't let me further than 1 line towards the end or the beginning.
16
" Don't let me further than 1 line towards the end or the beginning.
17
set scrolloff=1
17
set scrolloff=1
18
18
19
"""
20
call pathogen#infect('~/t/vim/')
21
19
" Have syntax highlighting and non-vi features
22
" Have syntax highlighting and non-vi features
20
syntax on
23
syntax on
21
set nocompatible
24
set nocompatible
22
25
26
" soo beautiful! :)
27
set background=dark
28
colorscheme solarized
29
23
set fileencodings=utf-8
30
set fileencodings=utf-8
24
31
25
" Allow me to delete with backspace
32
" Allow me to delete with backspace
26
set backspace=indent,eol,start
33
set backspace=indent,eol,start
27
34
28
"""
29
call pathogen#infect('~/t/vim/')
30
31
""" Mappin' stuff around a little bit (please :)
35
""" Mappin' stuff around a little bit (please :)
32
map q :quit<CR>
36
map q :quit<CR>
33
map Q :quitall<CR>
37
map Q :quitall<CR>