|
|
@ -2,6 +2,12 @@ set fileencoding=utf-8 |
|
|
|
|
|
|
|
|
|
|
|
filetype off |
|
|
|
filetype off |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if empty(glob('~/.config/nvim/autoload/plug.vim')) |
|
|
|
|
|
|
|
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs |
|
|
|
|
|
|
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim |
|
|
|
|
|
|
|
autocmd VimEnter * PlugInstall | source $MYVIMRC |
|
|
|
|
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
call plug#begin('~/.nvim/plugged') |
|
|
|
call plug#begin('~/.nvim/plugged') |
|
|
|
|
|
|
|
|
|
|
|
" Solarized theme |
|
|
|
" Solarized theme |
|
|
@ -79,7 +85,6 @@ Plug 'raichoo/haskell-vim' |
|
|
|
" end plugin list |
|
|
|
" end plugin list |
|
|
|
call plug#end() |
|
|
|
call plug#end() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
" Solarized Dark |
|
|
|
" Solarized Dark |
|
|
|
set background=dark |
|
|
|
set background=dark |
|
|
|
colorscheme solarized |
|
|
|
colorscheme solarized |
|
|
|