Skip to content

Instantly share code, notes, and snippets.

View YiweiJiang2015's full-sized avatar
👣
step by step

Yiwei YiweiJiang2015

👣
step by step
View GitHub Profile
@YiweiJiang2015
YiweiJiang2015 / hydrapaper.desktop
Created April 14, 2021 20:22 — forked from HarlemSquirrel/hydrapaper.desktop
HydraPaper desktop menu entry for GNOME and flatpak
[Desktop Entry]
# Place this file in ~/.local/share/applications/
Name=hydrapaper
GenericName=HydraPaper
Comment=A Gtk utility to set two different backgrounds for each monitor on GNOME
Exec=flatpak run org.gabmus.hydrapaper
Terminal=false
Type=Application
StartupNotify=true
# https://github.com/GabMus/HydraPaper/raw/master/data/icons/org.gabmus.hydrapaper.svg
@YiweiJiang2015
YiweiJiang2015 / .vimrc
Last active March 15, 2022 20:07 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
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
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'