Created
April 21, 2022 04:07
-
-
Save devinus/ee5c21dcfde6e55bd5f202e516ab82ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if &compatible | |
set nocompatible | |
endif | |
function! PackInit() abort | |
packadd minpac | |
call minpac#init() | |
call minpac#add('k-takata/minpac', {'type': 'opt'}) | |
call minpac#add('tpope/vim-sensible') | |
call minpac#add('vim-airline/vim-airline') | |
call minpac#add('vim-airline/vim-airline-themes') | |
call minpac#add('ryanoasis/vim-devicons') | |
call minpac#add('scrooloose/nerdtree') | |
call minpac#add('ctrlpvim/ctrlp.vim') | |
endfunction | |
command! PackUpdate source $MYVIMRC | call PackInit() | call minpac#update() | |
command! PackClean source $MYVIMRC | call PackInit() | call minpac#clean() | |
command! PackStatus packadd minpac | call minpac#status() | |
set title | |
set mouse=a | |
let g:airline_powerline_fonts = 1 | |
let g:indentLine_setColors = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment