Skip to content

Instantly share code, notes, and snippets.

@kobusan
kobusan / .p10k.zsh
Last active April 25, 2022 09:15
.zshrcの設定内容
# Generated by Powerlevel10k configuration wizard on 2022-04-25 at 18:09 JST.
# Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 7197.
# Wizard options: nerdfont-complete + powerline, small icons, classic, unicode, darkest,
# 24h time, vertical separators, slanted heads, slanted tails, 2 lines, dotted,
# right frame, sparse, many icons, concise, instant_prompt=verbose.
# Type `p10k configure` to generate another config.
#
# Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate
# your own config based on it.
#
@kobusan
kobusan / my-responsive.js
Created June 10, 2018 05:46
my-responsive.js
$(window).on('load resize', function(){
var w = $(window).width() * 1.05;
$('img.my_responsive').attr('width', w);
});