-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
77 lines (56 loc) · 1.63 KB
/
Copy pathinit.vim
File metadata and controls
77 lines (56 loc) · 1.63 KB
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
set number
syntax on
set tabstop=4
set t_Co=256
autocmd ColorScheme * highlight Visual ctermfg=14 guifg=#000000
autocmd ColorScheme * highlight String ctermfg=84 guifg=#000000
autocmd ColorScheme * highlight Comment ctermfg=227 guifg=#000000
colorscheme molokai
noremap j gj
noremap k gk
set shiftwidth=4
set expandtab
set showmatch
set nowritebackup
set nobackup
set noswapfile
"set textwidth=0
set colorcolumn=80
let g:tex_conceal=''
let g:go_fmt_command = "goimports"
nnoremap <silent><C-e> :NERDTreeToggle<CR>
let g:deoplete#enable_at_startup = 1
let g:rainbow_active = 1
"dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/Users/Haruka/.cache/dein/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('/Users/Haruka/.cache/dein')
call dein#begin('/Users/Haruka/.cache/dein')
" Let dein manage dein
" Required:
call dein#add('/Users/Haruka/.cache/dein/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here:
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
" You can specify revision/branch/tag.
call dein#add('Shougo/deol.nvim', { 'rev': '01203d4c9' })
call dein#add('scrooloose/nerdtree')
call dein#add('Yggdroot/indentLine')
call dein#add('Shougo/deoplete.nvim')
call dein#add('luochen1990/rainbow')
" Required:
call dein#end()
call dein#save_state()
endif
" Required:
filetype plugin indent on
syntax enable
" If you want to install not installed plugins on startup.
if dein#check_install()
call dein#install()
endif
"End dein Scripts-------------------------