-
Notifications
You must be signed in to change notification settings - Fork 84
/
tutorialrc
53 lines (44 loc) · 1.09 KB
/
tutorialrc
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
if &compatible
set nocompatible
endif
set runtimepath=$VIMRUNTIME
cd `=expand('<sfile>:p:h')`
set runtimepath^=.
silent! set packpath=
syntax enable
if $COLORTERM == ( 'truecolor' || 'gnome-terminal' || 'rxvt-xpm' )
set t_Co=256
endif
if has('gui_running')
colorscheme darkblue
hi! link Tabline StatusLine
else
colorscheme industry
hi Search ctermbg=236 ctermfg=12
hi PreProc ctermfg=174
hi Special ctermfg=223
hi ColorColumn ctermbg=236
hi Tabline cterm=NONE
hi! link StatusLine Tabline
if has('patch-8.0.0616') || has('nvim')
hi Normal ctermbg=235
endif
endif
set ttimeout timeoutlen=3000 ttimeoutlen=10
silent e ./doc/vm-tutorial
setfiletype help
setlocal bt=nofile bh=wipe noswf nobl
nnoremap <buffer> ZZ :<c-u>quit!<cr>
set mouse=a
set t_ut=
set expandtab
set laststatus=2
set hlsearch
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" vim-visual-multi configuration {{{1
let g:VM_mouse_mappings = 1
let g:VM_theme = 'iceblue'
let g:VM_maps = {}
let g:VM_maps["Undo"] = 'u'
let g:VM_maps["Redo"] = '<C-r>'
" vim: ft=vim