mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-22 03:00:05 +00:00
15 lines
236 B
Bash
15 lines
236 B
Bash
#!/bin/bash
|
|
# Description: Japanese Language Support
|
|
set -e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_recipe brew
|
|
_brew cmigemo
|
|
;;
|
|
debian)
|
|
_recipe _apt
|
|
_apt kakasi
|
|
_apt cmigemo
|
|
;;
|
|
esac
|