blob: 5670ffe4ef4b9c966af5581ca7841fc8f61782c5 (
plain)
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
|
" Scripts-----------------------------
" Required:
set runtimepath+=/home/paul/.local/share/dein/repos/github.com/Shougo/dein.vim
" Required:
if dein#load_state('/home/paul/.local/share/dein')
call dein#begin('/home/paul/.local/share/dein')
" Let dein manage dein
" Required:
call dein#add('/home/paul/.local/share/dein/repos/github.com/Shougo/dein.vim')
" Add or remove your plugins here:
" After removing a plugin you should call:
" call map(dein#check_clean(), "delete(v:val, 'rf')")
call dein#add('Shougo/neosnippet.vim')
call dein#add('Shougo/neosnippet-snippets')
call dein#add('Shougo/denite.nvim')
call dein#add('Shougo/defx.nvim')
call dein#add('vim-airline/vim-airline')
call dein#add('vim-airline/vim-airline-themes')
call dein#add('tpope/vim-fugitive')
call dein#add('srcery-colors/srcery-vim')
" 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-------------------------
set expandtab
set tabstop=2
set tw=80
set shiftwidth=2
set t_Co=256
colorscheme srcery
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
set list
set showbreak=↪\
set listchars=tab:→\ ,nbsp:␣,trail:•,extends:⟩,precedes:⟨
set fillchars=fold:\
"let g:deoplete#enable_at_startup = 1
inoremap ;; <esc>
|