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
|
set nocompatible
" Environment http://tlvince.com/vim-respect-xdg
if !exists($XDG_CONFIG_HOME)
let $XDG_CONFIG_HOME=expand('~/.config')
endif
if !exists($XDG_DATA_HOME)
let $XDG_DATA_HOME=expand('~/.local/share')
endif
if !exists($XDG_CACHE_HOME)
let $XDG_CACHE_HOME=expand('~/.cache')
endif
set directory=$XDG_CACHE_HOME/vim/swp//,/var/tmp//,/tmp//
set undodir=$XDG_CACHE_HOME/vim/undo//,/var/tmp//,/tmp//
set backupdir=$XDG_CACHE_HOME/vim/backup,/var/tmp,/tmp
set viminfo+=n$XDG_CACHE_HOME/vim/viminfo
set rtp=$XDG_CONFIG_HOME/vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,$XDG_CONFIG_HOME/vim/after
" dein.vim
let s:dein_base = $XDG_DATA_HOME . '/vim/dein'
let s:dein_repo_path = s:dein_base . '/repos/github.com/Shougo/dein.vim'
let s:dein_repo_url = 'https://github.com/Shougo/dein.vim'
let s:dein_toml = $XDG_CONFIG_HOME . '/vim/dein.toml'
let s:plugrc = $XDG_CONFIG_HOME . '/vim/plugrc'
let &runtimepath.=','.s:dein_repo_path
function! s:hook_source() abort
let l:rcfile = s:plugrc . '/' . g:dein#plugin.normalized_name . '.rc.vim'
let g:dein#plugin.hook_source = "source " . l:rcfile
endfunction
" dein.vim
let g:dein#types#git#clone_depth = 1
try
if dein#load_state(s:dein_base)
call dein#begin(s:dein_base)
call dein#load_toml(s:dein_toml)
call dein#end()
call dein#save_state()
endif
catch /E117:/ " dein not installed
execute "silent !git clone" s:dein_repo_url s:dein_repo_path
call dein#begin(s:dein_base)
call dein#load_toml(s:dein_toml)
set nomore
call dein#install()
call dein#end()
quit
endtry
if dein#tap('unite.vim')
nnoremap <leader>g :<C-u>Unite grep
\ -auto-preview
\ -no-split
\ -no-empty<CR>
nnoremap <leader>f :<C-u>Unite file_mru file/async file_rec/async
\ -start-insert <CR>
nnoremap <leader>l :<C-u>Unite buffer tab
\ -no-split <CR>
nnoremap <leader>r :<C-u>UniteResume
\ -no-start-insert
\ -force-redraw<CR>
call s:hook_source()
endif
if dein#tap('vimfiler.vim')
call s:hook_source()
endif
if dein#tap('neosnippet.vim')
let g:neosnippet#snippets_directory =
\ $XDG_CONFIG_HOME . '/vim/snippets'
imap <C-k> <Plug>(neosnippet_expand_or_jump)
smap <C-k> <Plug>(neosnippet_expand_or_jump)
xmap <C-k> <Plug>(neosnippet_expand_or_jump)
endif
if dein#tap('clang_complete')
call s:hook_source()
endif
if dein#tap('vim-racer')
let g:dein#plugin.hook_source =
\ "let $RUST_SRC_PATH= $XDG_DATA_HOME . '/rustc_src_latest/src/'"
endif
if dein#tap('vim-easy-align')
nmap ga <Plug>(EasyAlign)
endif
if dein#tap('vim-operator-surround')
nmap <silent>sa <Plug>(operator-surround-append)
nmap <silent>sd <Plug>(operator-surround-delete)
nmap <silent>sr <Plug>(operator-surround-replace)
endif
if dein#tap('vim-addon-local-vimrc')
let g:local_vimrc = {'names':['.lvimrc'],'hash_fun':'LVRHashOfFile'}
endif
if dein#tap('base16-vim')
set bg=dark
let base16colorspace=256
colorscheme base16-monokai
endif
filetype plugin indent on
syntax on
set ai
set bs=2
set cc=80
set fdm=syntax
set formatoptions+=j
set lcs=tab:\│\ ,trail:·,eol:¬
set ls=2
set nu
set rnu
set ru
set si
set sta
set sw=4
set ts=4
set ttyfast
set udf
set wmnu
if has('gui_running')
set go=m
endif
" Filebin
com -range=% Fb :exec "<line1>,<line2>w !fb -e ".&filetype." -n ".expand("%:t")
" Write with sudo
com W w !sudo tee % > /dev/null
|