61 lines
1.6 KiB
Text
61 lines
1.6 KiB
Text
" support my own way of using plugins in vim / bash
|
|
autocmd BufRead *vimplugrc set ft=vim
|
|
" enable plugins
|
|
execute 'source' fnameescape(plug)
|
|
silent!call plug#begin(plugdir)
|
|
|
|
" plugin manager for self updates
|
|
Plug 'junegunn/vim-plug'
|
|
|
|
" general plugins
|
|
"Plug 'sheerun/vim-polyglot'
|
|
Plug 'itchyny/lightline.vim'
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'junegunn/vim-easy-align'
|
|
Plug 'mhinz/vim-signify'
|
|
Plug 'tpope/vim-commentary'
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'tpope/vim-rsi'
|
|
Plug 'tpope/vim-vinegar'
|
|
Plug 'w0rp/ale', {'for': ['sh']}
|
|
Plug 'vimwiki/vimwiki', {'on': 'VimwikiIndex'}
|
|
|
|
" themes
|
|
Plug 'lifepillar/vim-gruvbox8'
|
|
Plug 'lifepillar/vim-solarized8'
|
|
Plug 'NLKNguyen/papercolor-theme'
|
|
|
|
call plug#end()
|
|
|
|
" easy-align
|
|
xmap <Leader>a <Plug>(EasyAlign)
|
|
nmap <Leader>a <Plug>(EasyAlign)
|
|
|
|
" fzf
|
|
nmap <Leader>ff :Files<CR>
|
|
nmap <Leader>fg :GFiles<CR>
|
|
nmap <Leader>fb :Buffers<CR>
|
|
nmap <Leader>fl :Lines<CR>
|
|
nmap <Leader>ft :Filetypes<CR>
|
|
|
|
let g:vimwiki_list = [{'path': '$HOME/vimwiki/', 'syntax': 'markdown', 'ext': '.md'}]
|
|
|
|
if $TERM !~ '^linux'
|
|
if has('gui_running')
|
|
set guifont=Cascadia\ Mono\ PL\ 13
|
|
set guicursor=a:blinkon0,a:block,i:ver1-Cursor/lCursor,r:hor1-Cursor/lCursor
|
|
set bg=dark guiheadroom=0 guioptions=aei mouse=a
|
|
|
|
map <S-Insert> <MiddleMouse>
|
|
map! <S-Insert> <MiddleMouse>
|
|
endif
|
|
|
|
let g:lightline = {
|
|
\ 'colorscheme': 'PaperColor',
|
|
\ 'separator': {'left': "\ue0b8", 'right': "\ue0ba"},
|
|
\ 'subseparator': {'left': "\ue0b9", 'right': "\ue0bb"}
|
|
\ }
|
|
let g:PaperColor_Theme_Options = {'theme': {'default': {'allow_italic': 1}}}
|
|
set t_Co=256 bg=dark
|
|
colorscheme PaperColor
|
|
endif
|