mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-23 11:09:50 +00:00
16 lines
235 B
Text
16 lines
235 B
Text
|
#!/bin/bash
|
||
|
# Description: Japanese Language Support
|
||
|
set -e
|
||
|
|
||
|
case $_PLATFORM in
|
||
|
darwin)
|
||
|
_recipe brew
|
||
|
_brew cmigemo
|
||
|
;;
|
||
|
linux)
|
||
|
_recipe _apt
|
||
|
_apt kakasi
|
||
|
_apt cmigemo
|
||
|
;;
|
||
|
esac
|