「Vimの設定」の版間の差分
提供: オレッジベース
(ページの作成:「=== Vimの設定 === Redhat系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vimrc </syntaxhighlight> Debian系? <syntaxhighlight lang="bash"> $ sudo vim /etc/vim/vi...」) |
|||
(同じ利用者による、間の1版が非表示) | |||
32行目: | 32行目: | ||
set list listchars=tab:\▸\- | set list listchars=tab:\▸\- | ||
set expandtab | set expandtab | ||
− | set tabstop= | + | set tabstop=4 |
− | set shiftwidth= | + | set shiftwidth=4 |
set ignorecase | set ignorecase | ||
set smartcase | set smartcase | ||
41行目: | 41行目: | ||
nmap <Esc><Esc> :nohlsearch<CR><Esc> | nmap <Esc><Esc> :nohlsearch<CR><Esc> | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | [[Category:Vim]] | ||
+ | [[Category:Linux]] |
2018年8月23日 (木) 16:12時点における最新版
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=4 set shiftwidth=4 set ignorecase set smartcase set incsearch set wrapscan set hlsearch nmap <Esc><Esc> :nohlsearch<CR><Esc>