-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
70 lines (62 loc) · 2.13 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
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
let arg1 = v:fname_in
if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
let arg2 = v:fname_new
if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
let arg3 = v:fname_out
if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
let eq = ''
if $VIMRUNTIME =~ ' '
if &sh =~ '\<cmd'
let cmd = '""' . $VIMRUNTIME . '\diff"'
let eq = '"'
else
let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
endif
else
let cmd = $VIMRUNTIME . '\diff'
endif
silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction
" ============================================
source $HOME\/\.vimdotcommon\/\.vimrc2.vim
" ============================================
" ============================================
" how to start vim with a specific width and height
" https://superuser.com/questions/419372/how-do-i-set-the-default-window-size-in-vim
if !has("gui_running")
" When the GUI is not running and Vim is started from the terminal.
if exists("+lines")
set lines=43
endif
if exists("+columns")
set columns=151
endif
endif
" ============================================
" ============================================
"" setting up a dark colorscheme at startup (Terminal)
" if !has("gui_running")
" colo mustang_green
" " :call ColStline()
" endif
" ============================================
" ============================================
let g:ascii = [
\ ' ______ __ ______ ________ ______',
\ ' /_ __/_ __/ /_ __ / ____/ / _/ __ \/ ____/',
\ ' / / / / / / / / / /_____/ / ______ / // / / / __/ ',
\ ' / / / /_/ / / /_/ /_____/ /__/_____// // /_/ / /___ ',
\ ' /_/ \__,_/_/\__,_/ \____/ /___/_____/_____/ ',
\ ''
\]
let g:startify_custom_header =
\ startify#pad(g:ascii + startify#fortune#boxed())