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
# ~/.config/fish/config.fish | |
# prompt setting (using starfish) | |
starship init fish | source | |
# Add PATH to peco | |
set -x PATH $PATH /usr/bin | |
# cd for parent directories | |
abbr .. "cd .." |
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
#!/usr/bin/perl | |
$latex = 'pdflatex %O -synctex=1 -interaction=nonstopmode %S'; | |
$bibtex = 'biblatex'; | |
$biber = 'biber --bblencoding=utf8 -u -U --output_safechars'; | |
$dvipdf = 'dvipdfmx %O %S'; | |
$max_repeat = 5; | |
$pdf_mode = 3; | |
$pvc_view_file_via_temporary = 0; | |
$pdf_previewer = 'evince 2>/dev/null'; |
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
" https://qiita.com/mfujimori/items/9fd41bcd8d1ce9170301 | |
" setting | |
"文字コードをUFT-8に設定 | |
set fenc=utf-8 | |
" バックアップファイルを作らない | |
set nobackup | |
" スワップファイルを作らない | |
set noswapfile | |
" 編集中のファイルが変更されたら自動で読み直す | |
set autoread |
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
[user] | |
email = your email address | |
name = your GitHub username | |
[core] | |
editor = vim | |
pager = delta | |
autocrlf = input | |
quotepath = false |
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
[global_config] | |
focus = mouse | |
window_state = fullscreen | |
enabled_plugins = TerminatorThemes, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler | |
always_split_with_profile = True | |
[keybindings] | |
split_horiz = <Primary><Shift>d | |
split_vert = <Primary>d | |
paste = <Primary>v | |
[profiles] |
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
# ~/.config/starship.toml | |
[battery] | |
full_symbol = "🔋" | |
charging_symbol = "🔌" | |
discharging_symbol = "⚡" | |
[[battery.display]] | |
threshold = 30 | |
style = "bold red" |
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
% 雑誌名の短縮形リスト | |
\DeclareSourcemap{% | |
\maps[datatype=bibtex,overwrite=true]{ | |
\map{ | |
\step[ | |
fieldsource=journal, | |
match={Journal of Fluid Mechanics}, | |
replace={J. Fluid Mech.}]% | |
\step[ | |
fieldsource=journal, |
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
% \PassOptionsToPackage{draft}{graphicx} | |
\documentclass[12pt,dvipdfmx,svgnames,uplatex,aspectratio=169]{beamer} | |
% \documentclass[12pt,dvipdfmx,svgnames,uplatex,aspectratio=169,handout]{beamer} | |
% | |
% =========================================== | |
% 図・表関係 | |
% =========================================== | |
\graphicspath{{./pics/}} % \includegraphicsで参照するディレクトリ | |
\makeatletter | |
\def\input@path{{/home/raraki/github/TikZ_figures/}} % \inputで参照するディレクトリ |
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
# ~/.screenrc | |
# https://qiita.com/kamykn/items/9939b67e923dbb87f39c | |
# Character code | |
defutf8 on | |
defencoding utf8 | |
encoding utf8 utf8 | |
# Disable startup message & window flushing | |
startup_message off |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |
OlderNewer