#
# Uncommenting PATH below will place /usr/gnu/bin at front,
# adds /usr/sbin and /sbin to the end.
#
# export PATH=/usr/gnu/bin:/usr/bin:/usr/sbin:/sbin
#
# Define default prompt to <username>@<hostname>:<path><"($|#) ">
# and print '#' for user "root" and '$' for normal users.
#
# override default prompt for bash
# case "$0" in
# -bash)
# export PS1="\u@\h:\w\\$ "
# esac
%!
% $Id: cidfmap 11349 2010-06-02 08:37:07Z ken $
% This is a sample map file for CIDFont category.
%
% The map is a set of records, which must use one of the two formats :
%
% 1. A substutution of a CIF font with another CID font :
%
% /substituted /original ;
%
% Where 'substituted' is a name being used in a document,
% 'original' is a name of an available resource.
%
% 2. A substutution of a CIF font with a True Type font :
%
% /substituted << /FileType /TrueType /Path (path) /SunfontID 1 /CSI [(ordering) supplement] >> ;
%
% Where 'substituted' is a name being used in a document,
% 'path' is a path to a True Type font file,
% 'ordering' is a value of Ordering required for CIDSystemInfo dictionary,
% 'supplement' is a value of Supplement required for CIDSystemInfo dictionary.
%
% The Ordering, and Registry (if present) entries should be PostScript string types
% ie enclosed in parentheses, not PostScript name type (initial character '/'). See
% gs/doc/Use.htm#CIDFontSubstitution
%
% Examples :
%
% /ShinGo-Bold /HeiseiKakuGo-W5 ;
% /Ryumin-Medium << /FileType /TrueType /Path (H:/AuxFiles/Fonts/BATANG.TTC) /SubfontID 3 /CSI [(Japan1) 2] >> ;
%
%
% Mapping for Asian Language Fonts delivered with Openwin.
%
" ファイルの上下端からn行までモードラインを探す(デフォルト5行)
"set modelines=5
" ファイルごとにエディタの設定を変更
set modeline
" バックアップを取らない
set nobackup
" 行番号を表示(コピペしにくいためオフ)
"set number
" TAB 4桁
set tabstop=4
" 80カラム(ウィンドウサイズによって変わった方が便利なのでオフ)
"set columns=80
" インクリメンタル検索
set incsearch
" 検索結果をハイライト表示
set hlsearch
" 小文字のみで検索:大文字小文字無視、大文字小文字で検索:区別して検索
set smartcase
" 対応する括弧やブレースを表示
set showmatch
" vim内部エンコード
set encoding=utf-8
" バッファの保存時に用いるエンコーディング
set fileencoding=utf-8
" バッファの改行コード
set fileformat=unix
" 改行コードの自動認識
set fileformats=unix,dos,mac
" 文字コードの自動認識
set fileencodings=ucs-bom,utf-8,iso-2022-jp,sjis,cp932,euc-jp,cp20932
" 構文ハイライト
syntax enable
" 背景色に合わせたカラー設定
set background=dark
" カラースキーマ
colorscheme koehler
" タブ、空白、改行の可視化
set list
set listchars=tab:>\ ,trail:-,eol:~,extends:>,precedes:<
" 自動改行の無効化
set tw=0
" コメント文字自動挿入の無効化~
autocmd FileType * setlocal formatoptions-=ro~
" 自動インデントの無効化
set nosmartindent
set noautoindent