1
0
forked from extern/nix-config

Add transparency support for all vim color schemes

This commit is contained in:
Donovan Glover 2017-10-24 21:38:19 -04:00
parent 4d5f993c5a
commit 72ded3f1c7
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

View File

@ -30,6 +30,7 @@ call plug#begin('~/.vim/plugged') " Use vim-plug as our package manager of
Plug 'maksimr/vim-jsbeautify' " Make it easier to work with foreign code
Plug 'lervag/vimtex' " Make editing LaTeX a breeze
Plug 'dbeniamine/todo.txt-vim' " Easily manage any part of your todo.txt
Plug 'Kjwon15/vim-transparent' " Add transparency by default for all color schemes
call plug#end() " Start the plugins
" =================================== Configuration ===================================
@ -131,3 +132,7 @@ autocmd FileType json map <leader>b :call JsonBeautify()<CR>
autocmd FileType jsx map <leader>b :call JsxBeautify()<CR>
autocmd FileType html map <leader>b :call HtmlBeautify()<CR>
autocmd FileType css map <leader>b :call CSSBeautify()<CR>
" Make it easy to disable and re-enable transparency as needed
map <leader>r :TransparentDisable<CR>
map <leader>y :TransparentEnable<CR>