|
|
|
" Install vim-plug if it is not already installed, for
|
|
|
|
" Portability's sake
|
|
|
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
|
|
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
|
|
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Plugins will be downloaded under the specified directory.
|
|
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
|
|
|
|
" Declare the list of plugins.
|
|
|
|
Plug 'itchyny/lightline.vim'
|
|
|
|
" Plug 'preservim/nerdtree'
|
|
|
|
Plug 'tpope/vim-vinegar'
|
|
|
|
Plug 'tpope/vim-surround'
|
|
|
|
Plug 'tpope/vim-fugitive'
|
|
|
|
Plug 'terryma/vim-multiple-cursors'
|
|
|
|
Plug 'ap/vim-css-color'
|
|
|
|
" Plug 'vimwiki/vimwiki'
|
|
|
|
" Plug 'lervag/wiki.vim'
|
|
|
|
" Plug 'lervag/wiki-ft.vim'
|
|
|
|
Plug 'godlygeek/tabular'
|
|
|
|
Plug 'plasticboy/vim-markdown'
|
|
|
|
|
|
|
|
" List ends here. Plugins become visible to Vim after this call.
|
|
|
|
call plug#end()
|
|
|
|
|
|
|
|
" Personal preference stuff
|
|
|
|
set number
|
|
|
|
set tabstop=4
|
|
|
|
set smartcase
|
|
|
|
colorscheme darkblue
|
|
|
|
|
|
|
|
" Use mouse
|
|
|
|
set mouse=a
|
|
|
|
set ttymouse=sgr
|
|
|
|
|
|
|
|
" Syntax and some plugins
|
|
|
|
:filetype plugin on
|
|
|
|
:syntax on
|
|
|
|
|
|
|
|
" Set the viki root directory
|
|
|
|
" let g:wiki_root = '~/vimwiki'
|
|
|
|
|
|
|
|
" lightline is installed so this is not necessary
|
|
|
|
set noshowmode
|
|
|
|
set laststatus=2
|
|
|
|
if !has('gui_running')
|
|
|
|
set t_Co=256
|
|
|
|
endif
|
|
|
|
|