This file contains 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
#!/bin/bash | |
# GIF parameters | |
fps=24 | |
width=960 | |
if [ "$1" = "" ]; then | |
printf "\e[31mSpecify input files\e[m\n" | |
exit 1 | |
fi |
This file contains 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
alias ls='ls -FG' | |
alias ll='ls -alFG' |
This file contains 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://github.com/ErichDonGubler/vim-sublime-monokai | |
colorscheme sublimemonokai | |
" 80列目の色を変更 | |
set colorcolumn=80 | |
" 行番号を表示 | |
set number |