2013年9月12日木曜日

MinGWの備忘録

MinGWの設定とかをメモ.

インストーラのダウンロード

Download mingw-get-setup.exe

パッケージのアップデート/アップグレード

$ mingw-get update
$ mingw-get upgrade

【2013/10/17追記】
2013/10/04にアップされているインストーラ(mingw-get-setup)から仕様が変わったようだ. 2012/04/26のインストーラ(mingw-get-inst)でインストールしたMinGWには, mingw-getコマンドが含まれているが, 2013/10/04のインストーラからコマンドが含まれず、パッケージ管理用のGUIアプリケーションが別途インストールされるようになっている.
【2013/10/27追記】
2013/10/04のインストーラでインストールした場合, デフォルトではfstabが設定されていなかった.そのため, /mingw/binに何もマウントされていない状態になっていた.

minttyのインストール

$ mingw-get install msys-mintty
msys.bat起動時にminttyを使うには, 以下のようにする.
C:\opt\MinGW\msys\1.0\msys.bat --mintty

設定ファイルの作成

◆.profile
#-------------------------------------------------------------------------------
# read .bashrc
#-------------------------------------------------------------------------------
if [ -e ~/.bashrc ] ; then
 source ~/.bashrc
fi

◆.bashrc
#-------------------------------------------------------------------------------
# env
#-------------------------------------------------------------------------------
# for gettext
export OUTPUT_CHARSET=sjis

#-------------------------------------------------------------------------------
# alias
#-------------------------------------------------------------------------------
alias grep='grep --color'
alias ls='ls -hF --color --show-control-chars'
alias ll='ls -l'
alias la='ls -A'

◆.minttyrc
#
# Looks
#
## Theme : Monokai
Black=0,0,0
Red=229,34,34
Green=166,227,45
Yellow=252,249,30
Blue=196,141,255
Magenta=250,37,115
Cyan=103,217,240
White=242,242,242
BoldBlack=0,0,0
BoldRed=229,34,34
BoldGreen=166,227,45
BoldYellow=252,249,30
BoldBlue=196,141,255
BoldMagenta=250,37,115
BoldCyan=103,217,240
BoldWhite=242,242,242
##
Transparency=medium
#
# Text
#
Font=Consolas
FontHeight=11
FontIsBold=no
BoldAsFont=no
FontSmoothing=full
Locale=ja_JP
Charset=SJIS
#
# Window
#
Columns=95
Rows=35
#
# Terminal
#

◆.inputrc
# Key-bindings for the command-line editor.

# Ask before displaying >50 items
# Since $WINDIR $PATH var can be in $PATH, this could list
# all window exectables in C:\WINDOWS
set completion-query-items 50

# Ignore case for the command-line-completion functionality
# on:  default to a Windows style console
# off: default to a *nix style console
set completion-ignore-case on

# none, visible or audible
set bell-style audible

# disable/enable 8bit input
set meta-flag on
set input-meta on
# default
#set output-meta off
#set convert-meta on
# for Japanese
set output-meta on
set convert-meta off
set kanji-code sjis

# visible-stats
# Append a mark according to the file type in a listing
set visible-stats off
set mark-directories on

# Show all instead of beeping first
set show-all-if-ambiguous off

# MSYSTEM is emacs based
$if mode=emacs
 # Common to Console & RXVT
 "\C-?": backward-kill-line       # Ctrl-BackSpace
 "\e[2~": paste-from-clipboard    # "Ins. Key"
 "\e[5~": beginning-of-history    # Page up
 "\e[6~": end-of-history          # Page down
 
 $if term=msys # RXVT
  "\e[7~": beginning-of-line      # Home Key
  "\e[8~": end-of-line            # End Key
  "\e[11~": display-shell-version # F1
  "\e[15~": re-read-init-file     # F5
 $endif
 $if term=cygwin # Console
  "\e[1~": beginning-of-line      # Home Key
  "\e[4~": end-of-line            # End Key
 $endif
$endif

0 件のコメント:

コメントを投稿