Initial Settings : Vim Settings2023/04/21 |
Configure Vim that is more convenience than vi.
|
[1] | Install and Configure Vim. The example below applys to a user specific setting. If you'd like to applly System wide, Write the same settings in [/etc/vim/vimrc]. |
root@localhost:~#
apt -y install vim
root@localhost:~#
vi ~/.vimrc " use extended feature of vim (no compatible with vi) set nocompatible " specify encoding set encoding=utf-8 " specify file encoding set fileencodings=utf-8,iso-2022-jp,sjis,euc-jp " specify file formats set fileformats=unix,dos " take backup " if not, specify [ set nobackup ] set backup " specify backup directory set backupdir=~/backup " number of search histories set history=50 " ignore Case set ignorecase " distinct Capital if you mix it in search words set smartcase " highlights matched words " if not, specify [ set nohlsearch ] set hlsearch " use incremental search " if not, specify [ set noincsearch ] |
Sponsored Link |