「Vimの設定」の版間の差分
提供: オレッジベース
(ページの作成:「=== Vimの設定 === Redhat系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vimrc </syntaxhighlight> Debian系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vim/vi...」) |
(相違点なし)
|
2017年12月20日 (水) 16:44時点における版
Vimの設定
Redhat系?
$ sudo vim /etc/vimrc
Debian系?
$ sudo vim /etc/vim/vimrc
以下を追記
set encoding=utf-8 set fileencodings=iso-2022-jp,euc-jp,sjis,utf-8 set fileformats=unix,dos,mac set fenc=utf-8 set nobackup set noswapfile set autoread set hidden set showcmd set number set cursorline set virtualedit=onemore set smartindent set visualbell set showmatch set laststatus=2 set wildmode=list:longest nnoremap j gj nnoremap k gk set list listchars=tab:\▸\- set expandtab set tabstop=2 set shiftwidth=2 set ignorecase set smartcase set incsearch set wrapscan set hlsearch nmap <Esc><Esc> :nohlsearch<CR><Esc>