「Vimの設定」の版間の差分
提供: オレッジベース
(ページの作成:「=== Vimの設定 === Redhat系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vimrc </syntaxhighlight> Debian系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vim/vi...」) |
|||
41行目: | 41行目: | ||
nmap <Esc><Esc> :nohlsearch<CR><Esc> | nmap <Esc><Esc> :nohlsearch<CR><Esc> | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | [[Category:Vim]] | ||
+ | [[Category:Linux]] |
2017年12月20日 (水) 17:05時点における版
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>