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
#!/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
# ~/.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 .." |
NewerOlder